Files
librenms-librenms/html/includes/graphs/device/siklu_rfOperationalFrequency.inc.php
T

15 lines
560 B
PHP
Raw Normal View History

2015-04-21 16:02:17 +01:00
<?php
2015-07-13 20:10:26 +02:00
require 'includes/graphs/common.inc.php';
2015-04-21 16:02:17 +01:00
$rrdfilename = rrd_name($device['hostname'], 'siklu-wireless');
2015-04-21 16:02:17 +01:00
if (rrdtool_check_rrd_exists($rrdfilename)) {
2015-04-21 16:02:17 +01:00
$rrd_options .= " COMMENT:'Hz Now Min Max\\n'";
2015-07-13 20:10:26 +02:00
$rrd_options .= ' DEF:rfOperFreq='.$rrdfilename.':rfOperFreq:AVERAGE ';
2015-04-30 21:23:22 +01:00
$rrd_options .= " LINE1:rfOperFreq#CC0000:'GHz ' ";
2015-07-13 20:10:26 +02:00
$rrd_options .= ' GPRINT:rfOperFreq:LAST:%3.2lf ';
$rrd_options .= ' GPRINT:rfOperFreq:MIN:%3.2lf ';
$rrd_options .= ' GPRINT:rfOperFreq:MAX:%3.2lf\\\l ';
2015-04-21 16:02:17 +01:00
}