Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
beanstalkd-monitor
Advanced tools
Monitor beanstalkd tube health and trigger alerts
import {Monitor} from 'beanstalkd-monitor';
const monitor = new Monitor(host, port);
monitor.on('update', function (data) {
/*
[
{
tube: 'tube',
ready: { // absolute numbers
now: 123,
'5m': 60,
'30m': 30,
'1h': 200
}
}
]
*/
});
monitor.start();
You can apply your own custom alert logic on each 'update' event but you can also add callbacks to beanstalkd-monitor for evaluation.
monitor.on('alert', function (alert) {
// Trigger Slack, PagerDuty, Winston
});
// Called for all tubes with individual tube data
monitor.addAlertTrigger(function (data) {
/*
{
tube: 'tube',
ready: { // absolute numbers
now: 123,
'5m': 60,
'30m': 30,
'1h': 200
}
}
*/
});
import {ThresholdAlertTrigger} from 'beanstalkd-monitor';
// Will trigger an alert if amount of jobs in ready state for tube exceeds 500
monitor.addAlertTrigger('tube', new ThresholdAlertTrigger('ready', 500));
FAQs
Monitor beanstalkd tube health and trigger alerts
The npm package beanstalkd-monitor receives a total of 4 weekly downloads. As such, beanstalkd-monitor popularity was classified as not popular.
We found that beanstalkd-monitor demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.