Hi!
I’m currently trying to use Asterisk ARI to call our customers. I am unable to separate out the calls that are disconnected by hanging up and the calls that could not be connected(because of any issue like being busy or out of network)
I’m kindof new to this so I’m not sure what kind of information to share.
Here’s my dialplan for the stasis application:
[from-internal]
exten => 1000,1,NoOp()
same => n,Answer()
same => n,Stasis(hello-world)
same => n,Hangup()
For ARI I’m using node-ari, here’s the relevant code:
function start_ari_application(app){
client.connect(‘http://192.168.1.208:8088/ari’, ‘xxxxxx’, ‘xxxxx’).then((client)=>{
ari_application(client)
}).catch(function (err) {throw err;});
}function ari_application (client) {
client.on(‘ChannelStateChange’, function(e, c){
console.log(“ChannelStateChange”, c.id, e.state);
});
client.on(‘ChannelHangupRequest’, function(e, c){
console.log(“ChannelHangupRequest”, c.id, e.cause, e.type);
});
client.on(‘ChannelHold’, function(e, c){
console.log(“ChannelHold”, c.id, e);
});
client.on(‘ChannelTalkingFinished’, function(e, c){
console.log(“ChannelTalkingFinished”, c.id, e);
});
client.on(‘ChannelTalkingStarted’, function(e, c){
console.log(“ChannelTalkingStarted”, c.id, e);
});
client.on(‘ChannelUnhold’, function(e, c){
console.log(“ChannelUnhold”, c.id, e);
});
client.on(‘PlaybackFinished’, function(e, c){
console.log(“PlaybackFinished”, c.id);
});
client.on(‘ChannelConnectedLine’, function(e, c){
console.log(“ChannelConnectedLine”, c.id, e);
});
client.on(‘ChannelVarset’, function(e, c){
console.log(“ChannelVarset”, c.id, e.variable, e.value);
});
client.on(‘DeviceStateChanged’, function(e, c){
console.log(“DeviceStateChanged”, c.id, e);
});
client.on(‘ChannelDestroyed’, function(e, c){
console.log(“ChannelDestroyed”, c.id, e.cause, e.cause_txt);
});
client.on(‘ChannelUserEvent’, function(e, c){
console.log(“ChannelUserEvent”, c.id, e);
});
client.on(‘Dial’, function(e, c){
console.log(“Dial”, c.id, e.dialstatus);
});
client.on(‘ChannelTalkingStarted’, function(e, c){
console.log(“ChannelTalkingStarted”, c.id, e);
});
client.on(‘ChannelTalkingFinished’, function(e, c){
console.log(“ChannelTalkingFinished”, c.id, e.dialstatus);
});
function stasisStart(event, channel) {
}
function stasisEnd(event, channel) {
console.log(Channel ${channel.name} just left our application
);
}
client.on(‘StasisStart’, stasisStart);
client.on(‘StasisEnd’, stasisEnd);
client.start(‘hello-world’);
}
Any call[Not reachable/Busy] I make results in only these sequences =>
Channel created->Dial Progress->Channel Destroyed
My SIP endpoint is a GSM Gateway.
However I wish to separate between if a number is busy or not reachable.
How do I achieve this?