Asterisk ARI | Differentiate between Call Busy and Call not reachable

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?

Have you examined the SIP signalling to see if there is actually a difference?

I did check with

sip set debug on

However could not see any messages on BUSY or other such responses.

What should I be looking for? I believe these messages are with the Q.850 standard, is there something I’m missing? I’ve set

use_q850_reason=yes

In the sip settings.

In that case you have unreachable, of a sub-type that prevents anything being sent.

A sub-type?

Sorry I’m unable to follow through, does this mean, a sub-type of the event?

Or something like a firewall that is blocking? (We don’t have that by the way)

If you provide the actual SIP signaling then someone else can interpret, otherwise based on your statement Asterisk can’t tell the difference because there is no difference/it doesn’t know/it isn’t told.

Here’s the sip log:

https://pastebin.com/q6UBYafW

I’m also of the opinion it is not receiving the Q.850 messages but, if there’s a way other than that, it would be helpful.

I was responding based on the understanding that you weren’t seeing anything on the protocol logging, however you have subsequently provided non-empty protocol logging, including responses.

Your logging appears to have been screen-scraped, rather than taken from a log file, so is missing timestamps. However, Asterisk appears to have received a 183, with early media SDP, and then issued a cancel.

I’d have to assume that there was a significant time between these two events, and that the call was timed out as the result of your setting a time limit on it.

The peer never gave a final response, so there would be no Q.850 status from it.

Here’s the timestamped version:

[2021-11-27 12:29:31] VERBOSE[31117] netsock2.c: Using SIP RTP TOS bits 184[20 - Pastebin.com

Asterisk is terminating the line before, it can receive a response is it? Should I set a timeout someplace?

According to the documentation ( Asterisk 18 Channels REST API - Asterisk Project - Asterisk Project Wiki ) the default timeout is 30 seconds and that is what you are seeing. The documentation says how to change this.

Could this be because, my stasis application is between answer and hangup?
Like, I’m not able to receive events because the call has not entered the stasis app (I’m hanging up on the call without answering it)

exten => 1000,1,NoOp()
same => n,Answer()
same => n,Stasis(hello-world)
same => n,Hangup()

No, what is happening is that your GSM gateway is providing everything as audio. Asterisk doesn’t do inband detection of the audio so it has no idea that it’s busy, or unavailable, or anything else. It’s just audio to Asterisk and it’s not told otherwise.

I understand, I think I need to take this up with the GSM Gateway providers.

Thanks!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.