mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
feature: Add SonicWALL Sessions #1686
This commit is contained in:
committed by
Neil Lathwood
parent
83b11a372d
commit
931779b917
18
html/includes/graphs/device/sonicwall_sessions.inc.php
Normal file
18
html/includes/graphs/device/sonicwall_sessions.inc.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
$rrd_filename = rrd_name($device['hostname'], 'sonicwall_sessions');
|
||||
|
||||
$rrd_list[0]['filename'] = $rrd_filename;
|
||||
$rrd_list[0]['descr'] = 'Maxiumum Sessions';
|
||||
$rrd_list[0]['ds'] = 'maxsessions';
|
||||
|
||||
$rrd_list[1]['filename'] = $rrd_filename;
|
||||
$rrd_list[1]['descr'] = 'Active Sessions';
|
||||
$rrd_list[1]['ds'] = 'activesessions';
|
||||
|
||||
$colours = 'mixed';
|
||||
$nototal = 1;
|
||||
$unit_text = 'Sessions';
|
||||
$scale_min = '0';
|
||||
|
||||
require 'includes/graphs/generic_multi_line.inc.php';
|
Reference in New Issue
Block a user