Files
librenms-librenms/includes/html/graphs/sensor/runtime.inc.php

17 lines
727 B
PHP
Raw Normal View History

2016-09-19 10:56:17 -04:00
<?php
2020-09-21 15:40:17 +02:00
2016-09-19 10:56:17 -04:00
$scale_min = '0';
require 'includes/html/graphs/common.inc.php';
$rrd_options .= " COMMENT:' Last Max\\n'";
$sensor['sensor_descr_fixed'] = rrdtool_escape($sensor['sensor_descr'], 32);
2016-09-19 10:56:17 -04:00
$rrd_options .= " DEF:sensor=$rrd_filename:sensor:AVERAGE";
2020-09-21 15:40:17 +02:00
$rrd_options .= " LINE1.5:sensor#cc0000:'" . $sensor['sensor_descr_fixed'] . "'";
2016-09-19 10:56:17 -04:00
$rrd_options .= ' GPRINT:sensor:LAST:%3.0lfMin';
2016-10-25 09:53:35 -04:00
$rrd_options .= ' GPRINT:sensor:MAX:%3.0lfMin\l';
2016-09-19 10:56:17 -04:00
if (is_numeric($sensor['sensor_limit'])) {
2020-09-21 15:40:17 +02:00
$rrd_options .= ' HRULE:' . $sensor['sensor_limit'] . '#999999::dashes';
2016-09-19 10:56:17 -04:00
}
if (is_numeric($sensor['sensor_limit_low'])) {
2020-09-21 15:40:17 +02:00
$rrd_options .= ' HRULE:' . $sensor['sensor_limit_low'] . '#999999::dashes';
2016-09-19 10:56:17 -04:00
}