mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
19 lines
331 B
PHP
19 lines
331 B
PHP
|
<?php
|
||
|
|
||
|
$rrd_filename = rrd_name($device['hostname'], 'junos_jsrx_spu_sessions');
|
||
|
|
||
|
require 'includes/graphs/common.inc.php';
|
||
|
|
||
|
$ds = 'spu_flow_sessions';
|
||
|
|
||
|
$colour_area = '9999cc';
|
||
|
$colour_line = 'ff0000';
|
||
|
|
||
|
$colour_area_max = '9999cc';
|
||
|
|
||
|
$scale_min = '0';
|
||
|
|
||
|
$unit_text = 'SPU Flows';
|
||
|
|
||
|
require 'includes/graphs/generic_simplex.inc.php';
|