Tony Murray 57650e4ffc Remove nfs requirement for distributed poller (with rrdtool 1.5+)
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
2016-07-07 21:10:06 -05:00

18 lines
633 B
PHP

<?php
$scale_min = '0';
require 'includes/graphs/common.inc.php';
$rrd_filename = rrd_name($device['hostname'], 'fdb_count');
$rrd_options .= " DEF:value=$rrd_filename:value:AVERAGE";
$rrd_options .= " DEF:value_min=$rrd_filename:value:MIN";
$rrd_options .= " DEF:value_max=$rrd_filename:value:MAX";
$rrd_options .= " COMMENT:'MACs Current Minimum Maximum Average\\n'";
$rrd_options .= ' AREA:value#EEEEEE:value';
$rrd_options .= ' LINE1.25:value#36393D:';
$rrd_options .= " 'GPRINT:value:LAST:%6.2lf ' 'GPRINT:value_min:MIN:%6.2lf '";
$rrd_options .= " 'GPRINT:value_max:MAX:%6.2lf ' 'GPRINT:value:AVERAGE:%6.2lf\\n'";