mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* feature: Allow customisation of rrd step/heartbeat when creating new rrd files * revert defaults * added docs + webui config option * Move RrdDefinition to an Object to make them easier to create and remove the possibility of typos. * Fix style/lint issues and missing use statements * 3 more missing use statements * updated doc + moved schema file
36 lines
1.2 KiB
PHP
36 lines
1.2 KiB
PHP
<?php
|
|
/*
|
|
* LibreNMS
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the
|
|
* Free Software Foundation, either version 3 of the License, or (at your
|
|
* option) any later version. Please see LICENSE.txt at the top level of
|
|
* the source code distribution for details.
|
|
*/
|
|
|
|
use LibreNMS\RRD\RrdDefinition;
|
|
|
|
$rssi = snmp_get($device, "CISCO-WAN-3G-MIB::c3gCurrentGsmRssi.13", "-Ovqn", "CISCO-WAN-3G-MIB");
|
|
if (is_numeric($rssi)) {
|
|
$rrd_def = RrdDefinition::make()->addDataset('rssi', 'GAUGE', -150, 5000);
|
|
$fields = array(
|
|
'rssi' => $rssi,
|
|
);
|
|
$tags = compact('rrd_def');
|
|
data_update($device, 'cisco-wwan-rssi', $tags, $fields);
|
|
$graphs['cisco_wwan_rssi'] = true;
|
|
}
|
|
|
|
$mnc = snmp_get($device, "CISCO-WAN-3G-MIB::c3gGsmMnc.13", "-Ovqn", "CISCO-WAN-3G-MIB");
|
|
if (is_numeric($mnc)) {
|
|
$rrd_def = RrdDefinition::make()->addDataset('mnc', 'GAUGE', 0);
|
|
$fields = array(
|
|
'mnc' => $mnc,
|
|
);
|
|
$tags = compact('rrd_def');
|
|
data_update($device, 'cisco-wwan-rssi', $tags, $fields);
|
|
$graphs['cisco-wwan-mnc'] = true;
|
|
}
|
|
unset($rrd_def, $rssi, $mnc, $fields, $tags);
|