brando16 wrote:thanks for reply William,
but i haven't cli output because we are a lot o calls and it is very dirty. but for some agent the initial call for connecting the agent into conferences drop between 8 and 16 secs.
have you ever heard of this
thanks a lot.
Most Asterisk ClI output is logged in text files (except agi perl script errors). There are some in the /var/log/asterisk folder and some in the /var/log/astguiclient folder. Note that each call is assigned a number which is shown in each line of the log entry [inbrackets] so you CAN search for that number and get all the stages of that call's number. Note that the numbers are recycled, so you may see a call with that ID at 10AM and another with the same ID at 3PM ... obviously they are not the same call, we only want the CLI output related to the call in question.
Learn the proper use of the "grep" command. It's very useful. For instance:
- Code: Select all
cd /var/log/asterisk
grep 5554441212 messages* -n
That should get you the call number in brackets. Use it here (note the backslash to allow the opening bracket:
- Code: Select all
cd /var/log/asterisk
grep '\[18753]' messages* -n
Happy Hunting.