Files
librenms-librenms/includes/polling/cisco-voice/cisco-iosmtp.inc.php
Tony Murray 3c67de2311 Fix misc Cisco polling errors (#16307)
* Fix misc Cisco polling errors

* Apply fixes from StyleCI

---------

Co-authored-by: Tony Murray <murrant@users.noreply.github.com>
2024-08-21 12:22:37 +02:00

44 lines
1.3 KiB
PHP

<?php
/*
* LibreNMS module to Graph Hardware MTP Resources in a Cisco Voice Router
*
* Copyright (c) 2015 Aaron Daniels <aaron@daniels.id.au>
*
* 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;
if ($device['os_group'] == 'cisco') {
// Total
$total = SnmpQuery::get('1.3.6.1.4.1.9.9.86.1.6.4.1.3')->value();
if (isset($total) && $total > 0) {
// Available
$available = SnmpQuery::get('1.3.6.1.4.1.9.9.86.1.6.4.1.4')->value();
// Active
$active = $total - $available;
$rrd_def = RrdDefinition::make()
->addDataset('total', 'GAUGE', 0)
->addDataset('active', 'GAUGE', 0);
$fields = [
'total' => $total,
'active' => $active,
];
$tags = compact('rrd_def');
data_update($device, 'cisco-iosmtp', $tags, $fields);
$os->enableGraph('cisco-iosmtp');
echo ' Cisco IOS MTP ';
}
unset($rrd_def, $total, $active, $available, $fields, $tags);
}