Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
1.4 KiB
PHP
Raw Permalink Normal View History

2009-10-27 13:04:16 +00:00
<?php
2020-09-21 15:40:17 +02:00
$scale_min = '0';
$scale_max = '60';
2009-10-28 13:49:37 +00:00
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/common.inc.php';
2009-10-27 13:04:16 +00:00
$rrd_options .= " COMMENT:' Min Last Max\\n'";
2011-03-17 11:46:02 +00:00
$rrd_options .= " DEF:sensor=$rrd_filename:sensor:AVERAGE";
$rrd_options .= " DEF:sensor_max=$rrd_filename:sensor:MAX";
$rrd_options .= " DEF:sensor_min=$rrd_filename:sensor:MIN";
if (is_numeric($sensor['sensor_limit'])) {
$rrd_options .= ' CDEF:sensorwarm=sensor_max,' . $sensor['sensor_limit'] . ',GT,sensor,UNKN,IF';
}
$rrd_options .= ' CDEF:sensorcold=sensor_min,20,LT,sensor,UNKN,IF';
$rrd_options .= ' CDEF:sensor_diff=sensor_max,sensor_min,-';
$rrd_options .= ' AREA:sensor_min';
$rrd_options .= ' AREA:sensor_diff#c5c5c5::STACK';
2016-08-18 20:28:22 -05:00
if ($sensor['poller_type'] == 'ipmi') {
2021-03-28 17:25:30 -05:00
$rrd_options .= " LINE1.5:sensor#cc0000:'" . \LibreNMS\Data\Store\Rrd::fixedSafeDescr(ipmiSensorName($device['hardware'], $sensor['sensor_descr']), 21) . "'";
} else {
2021-03-28 17:25:30 -05:00
$rrd_options .= " LINE1.5:sensor#cc0000:'" . \LibreNMS\Data\Store\Rrd::fixedSafeDescr($sensor['sensor_descr'], 21) . "'";
}
$rrd_options .= ' GPRINT:sensor_min:MIN:%4.1lfC';
$rrd_options .= ' GPRINT:sensor:LAST:%4.1lfC';
$rrd_options .= ' GPRINT:sensor_max:MAX:%4.1lfC\\l';
2009-10-27 13:04:16 +00:00
if (is_numeric($sensor['sensor_limit'])) {
$rrd_options .= ' HRULE:' . $sensor['sensor_limit'] . '#999999::dashes';
}
2010-08-11 14:00:12 +00:00
if (is_numeric($sensor['sensor_limit_low'])) {
$rrd_options .= ' HRULE:' . $sensor['sensor_limit_low'] . '#999999::dashes';
}