mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Blue Coat device updates * Blue Coat device updates * Updated PHP code per @laf comments * YAML update for Packetshaper * SSL Visibility YAML and snmprec file * Cleanup problematic MIB files which should not have been there * Reset Packetshaper YAML to original * Added json test data
19 lines
341 B
PHP
19 lines
341 B
PHP
<?php
|
|
|
|
$rrd_filename = rrd_name($device['hostname'], 'sgos_client_connections_active');
|
|
|
|
require 'includes/graphs/common.inc.php';
|
|
|
|
$ds = 'client_conn_active';
|
|
|
|
$colour_area = '9999cc';
|
|
$colour_line = 'ff0000';
|
|
|
|
$colour_area_max = '9999cc';
|
|
|
|
$scale_min = '0';
|
|
|
|
$unit_text = 'Active Conn';
|
|
|
|
require 'includes/graphs/generic_simplex.inc.php';
|