
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
ast-monitor
Advanced tools
A simple Asterisk events Monitor through Asterisk Manager Interface. You can monitor Peers Status, T1/E1 boards status, Congestion or Fail Calls and more.
Ast-Monitor is a module to monitor events on Asterisk Manager Interface.
It simplify the task to get certain events link a call and its parts (called and caller channels) and join, clean and re-emit the event with a new object.
const mon = require('ast-monitor')(AMI_PORT, AMI_HOST, AMI_USER, AMI_PASS, ARRAY_ITEMS_TO_MONITOR);
5038
/etc/asterisk/manager.conf
trunks
or peers
peers
, that means Monitor all peers
, or an object with an array list of peer you want monitor like {'peers': ['8020','8021']}
that means Monitor the peers 8020 and 8021
const mon = require('ast-monitor')('5038','192.168.10.252','snep','sneppass',[{'peers':['8029','8014']}]);
mon.events.on('online', function(data){
console.log('Online: %s', JSON.stringify(data));
});
mon.events.on('offline', function(data){
console.log('Offline: %s', JSON.stringify(data));
});
mon.events.on('oncall', function(data){
console.log('OnCall: %s', JSON.stringify(data));
});
mon.events.on('hangup', function(data){
console.log('Hangup: %s', JSON.stringify(data));
});
mon.events.on('state', function(data){
console.log('State: %s', JSON.stringify(data));
});
mon.events.on('connected', function(data){
console.log('Connected:');
console.log(data);
});
mon.events.on('error', function(data){
console.log('error:');
console.log(data);
});
FAQs
A simple Asterisk events Monitor through Asterisk Manager Interface. You can monitor Peers Status, T1/E1 boards status, Congestion or Fail Calls and more.
The npm package ast-monitor receives a total of 14 weekly downloads. As such, ast-monitor popularity was classified as not popular.
We found that ast-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.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.