
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
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.
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
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.