Files
librenms-librenms/html/includes/graphs/device/asyncos_conns.inc.php
network-guy dc498be4f0 newdevice: Added Current Connections Graph for Cisco WSA (#6734)
* Added current connections graph for AsyncOS devices

* Fixed issues with AsyncOS connections polling and add name to AUTHORS file

* Update 194.sql
2017-06-02 20:58:02 +01:00

20 lines
331 B
PHP

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