Files
librenms-librenms/includes/html/graphs/device/barracuda_firewall_sessions.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

20 lines
353 B
PHP

<?php
$rrd_filename = rrd_name($device['hostname'], 'barracuda_firewall_sessions');
require 'includes/html/graphs/common.inc.php';
$ds = 'fw_sessions';
$colour_area = '9999cc';
$colour_line = '0000cc';
$colour_area_max = '9999cc';
#$graph_max = 1;
$graph_min = 0;
$unit_text = 'Sessions';
require 'includes/html/graphs/generic_simplex.inc.php';