2016-08-26 12:08:48 +01:00
|
|
|
<?php
|
2017-02-23 22:45:50 +00:00
|
|
|
|
|
|
|
use LibreNMS\RRD\RrdDefinition;
|
|
|
|
|
2016-08-26 12:08:48 +01:00
|
|
|
$name = 'freeswitch';
|
|
|
|
$app_id = $app['app_id'];
|
|
|
|
if (!empty($agent_data[$name])) {
|
|
|
|
$rawdata = $agent_data[$name];
|
2017-03-11 14:39:32 +00:00
|
|
|
update_application($app, $rawdata);
|
2016-08-26 12:08:48 +01:00
|
|
|
} else {
|
|
|
|
echo "Freeswitch Missing";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
# Format Data
|
2016-08-28 12:32:58 -05:00
|
|
|
$lines = explode("\n", $rawdata);
|
2016-08-26 12:08:48 +01:00
|
|
|
$freeswitch = array();
|
|
|
|
foreach ($lines as $line) {
|
2016-08-28 12:32:58 -05:00
|
|
|
list($var,$value) = explode('=', $line);
|
|
|
|
$freeswitch[$var] = $value;
|
2016-08-26 12:08:48 +01:00
|
|
|
}
|
|
|
|
# Freeswitch stats
|
|
|
|
$rrd_name = array('app', $name, 'stats', $app_id);
|
2017-02-23 22:45:50 +00:00
|
|
|
$rrd_def = RrdDefinition::make()
|
|
|
|
->addDataset('calls', 'GAUGE', 0, 10000)
|
|
|
|
->addDataset('channels', 'GAUGE', 0, 10000)
|
|
|
|
->addDataset('peak', 'GAUGE', 0, 10000)
|
|
|
|
->addDataset('in_failed', 'COUNTER', 0, 4294967295)
|
|
|
|
->addDataset('in_okay', 'COUNTER', 0, 4294967295)
|
|
|
|
->addDataset('out_failed', 'COUNTER', 0, 4294967295)
|
|
|
|
->addDataset('out_okay', 'COUNTER', 0, 4294967295);
|
2016-08-26 12:08:48 +01:00
|
|
|
$fields = array (
|
|
|
|
'calls' => $freeswitch['Calls'],
|
|
|
|
'channels' => $freeswitch['Channels'],
|
|
|
|
'peak' => $freeswitch['Peak'],
|
2016-08-28 12:32:58 -05:00
|
|
|
'in_failed' => $freeswitch['InFailed'],
|
|
|
|
'in_okay' => $freeswitch['InTotal']-$freeswitch['InFailed'],
|
|
|
|
'out_failed' => $freeswitch['OutFailed'],
|
|
|
|
'out_okay' => $freeswitch['OutTotal']-$freeswitch['OutFailed']
|
2016-08-26 12:08:48 +01:00
|
|
|
);
|
|
|
|
$tags = compact('name', 'app_id', 'rrd_name', 'rrd_def');
|
|
|
|
data_update($device, 'app', $tags, $fields);
|
|
|
|
unset($lines , $freeswitch, $rrd_name, $rrd_def, $fields, $tags);
|