Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
464 B
PHP
Raw Permalink Normal View History

2016-10-20 00:53:02 +03:00
<?php
2021-03-28 17:25:30 -05:00
$rrd_filename = Rrd::name($device['hostname'], 'sonicwall_sessions');
2016-10-20 00:53:02 +03:00
$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';
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/generic_multi_line.inc.php';