mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Use data_update instead of rrd_update/rrd_create and influx_update Centralize rrd file check so we can check against a remote rrdcached server too Use rrd_name() to generate rrd file names
11 lines
193 B
PHP
11 lines
193 B
PHP
<?php
|
|
|
|
$rrd_filename = rrd_name($device['hostname'], 'netscaler-stats-tcp');
|
|
|
|
$ds_in = 'TotRxBytes';
|
|
$ds_out = 'TotTxBytes';
|
|
|
|
$multiplier = 8;
|
|
|
|
require 'includes/graphs/generic_data.inc.php';
|