
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
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
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 researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.