Archive for August, 2017

This post is about using Nagios plugin check_json to monitor system status. Since CtiSVR can return XML or JSON as payload over the REST interface, we can use the check_json plugin to monitor Avaya resource such as Trunk Group and ACD Hunt Group.

For example, the following command is to query Avaya Trunk Group (TAC) 3491, the result is is WARNING if the used trunks over 15 and CRITICAL if the used trunk over 20. The threshold format for Nagios is here.

check_json.pl --url 'http://$HOSTADDRESS$:9001/querytrunkgroup?tac=3491&payload=json' --attribute '{usedtrunks}' -w15 -c20 --perfvars 'idletrunks,usedtrunks'

To monitor Avaya Hunt Group such as the number of call queued, we can use the following command to monitor ACD Hunt Group 20666, the result is WARNING when the number of call queued over 0 and it is CRITICAL when the number of call queued over 5.

check_json.pl --url 'http://$HOSTADDRESS$:9001/queryacdsplit?split=20666&payload=json' --attribute '{callsqueue}' -w0 -c5 --perfvars 'callsqueue'

AvayaCDR 1.5.17 and CloudCDR 1.1.5 just released, the updates are 

1. Add a parameter cdr_splunklogdir to specify the Splunk log directory. Once this parameter is defined, the Splunk log will be saved in the directory and the parameter to specify Splunk host and port will be ignored.
2. Fine tuned the test SQL command procedure.

bcmsSVR 2.0.1 Released

Posted: August 19, 2017 in BCMS, News

bcmsSVR 2.0.1 just released. The updates are 

1. Compile with libSSH for Windows version.
2. Add parameter bcms_debuglog, set it to true if you want to have debug log.
3. Add parameter bcms_splunk_logdir for storing of splunk log in local files.
4. Bug fixing on bcmsListAgent, bcmsListSplit, bcmsListVdn and bcmsListTrunk Splunk logging.
5. Add report without description.

AvayaECHI 1.1.11 Released

Posted: August 3, 2017 in CMS, News

AvayaECHI 1.1.11 just released. The updates are 

1. A parameter called “echi_splunk_logdir” is added for storing splunk log in specified directory. We can configure Splunk Universial Forwarder to import the splunk log to Splunk to prevent data loss when there is network issue.