Files
librenms-librenms/includes/polling/os/barracudangfirewall.inc.php
pobradovic08 b8c4f38fb5 Added session graphs for Barracuda NGFW (#10102)
* devices: Corrected discovery object ID for Barracuda NGFW; Added fw session graphs
* device: Added test data
2019-04-27 15:33:55 +02:00

32 lines
1001 B
PHP

<?php
/*
* LibreNMS
*
* Copyright (c) 2017 Søren Friis Rosiak <sorenrosiak@gmail.com>
* 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['sysObjectID'] == '.1.3.6.1.4.1.10704.1.10') {
$hardware = $device['sysName'];
}
$sessions = snmp_get($device, 'firewallSessions64.8.102.119.83.116.97.116.115.0', '-OQv', 'PHION-MIB');
if (is_numeric($sessions)) {
$rrd_def = RrdDefinition::make()->addDataset('fw_sessions', 'GAUGE', 0);
$fields = array(
'fw_sessions' => $sessions
);
$tags = compact('rrd_def');
data_update($device, 'barracuda_firewall_sessions', $tags, $fields);
$graphs['barracuda_firewall_sessions'] = true;
}