2009-10-27 13:04:16 +00:00
|
|
|
<?php
|
|
|
|
|
2010-03-18 02:23:45 +00:00
|
|
|
$scale_min = "25";
|
|
|
|
$scale_max = "40";
|
2009-10-28 13:49:37 +00:00
|
|
|
|
2009-10-27 13:04:16 +00:00
|
|
|
include("common.inc.php");
|
|
|
|
|
2010-07-13 10:00:17 +00:00
|
|
|
$rrd_options .= " COMMENT:' Last Min Max\\n'";
|
2009-10-28 13:49:37 +00:00
|
|
|
|
2010-06-25 22:12:56 +00:00
|
|
|
$temperature = mysql_fetch_array(mysql_query("SELECT * FROM sensors where sensor_id = '".mres($_GET['id'])."'"));
|
2009-10-27 13:04:16 +00:00
|
|
|
|
2010-02-13 07:40:43 +00:00
|
|
|
$hostname = mysql_result(mysql_query("SELECT hostname FROM devices WHERE device_id = '" . $temperature['device_id'] . "'"),0);
|
2009-10-27 13:04:16 +00:00
|
|
|
|
2010-06-25 22:12:56 +00:00
|
|
|
$temperature['sensor_descr_fixed'] = substr(str_pad($temperature['sensor_descr'], 28),0,28);
|
2009-10-27 13:04:16 +00:00
|
|
|
|
2010-06-25 22:12:56 +00:00
|
|
|
$rrd_filename = $config['rrd_dir'] . "/".$hostname."/" . safename("temp-" . $temperature['sensor_descr'] . ".rrd");
|
2009-10-27 13:04:16 +00:00
|
|
|
|
2010-04-29 00:44:54 +00:00
|
|
|
|
2009-10-27 13:04:16 +00:00
|
|
|
$rrd_options .= " DEF:temp=$rrd_filename:temp:AVERAGE";
|
2010-03-18 02:23:45 +00:00
|
|
|
$rrd_options .= " DEF:temp_max=$rrd_filename:temp:MAX";
|
|
|
|
$rrd_options .= " DEF:temp_min=$rrd_filename:temp:MIN";
|
2010-06-25 22:12:56 +00:00
|
|
|
$rrd_options .= " CDEF:tempwarm=temp_max,".$temperature['sensor_limit'].",GT,temp,UNKN,IF";
|
2010-03-18 02:23:45 +00:00
|
|
|
$rrd_options .= " CDEF:tempcold=temp_min,20,LT,temp,UNKN,IF";
|
2010-06-12 17:24:35 +00:00
|
|
|
$rrd_options .= " AREA:temp_max#c5c5c5";
|
2010-03-18 02:23:45 +00:00
|
|
|
$rrd_options .= " AREA:temp_min#ffffffff";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# $rrd_options .= " AREA:temp#bbd392";
|
|
|
|
# $rrd_options .= " AREA:tempwarm#FFCCCC";
|
|
|
|
# $rrd_options .= " AREA:tempcold#CCCCFF";
|
2010-06-25 22:12:56 +00:00
|
|
|
$rrd_options .= " LINE1:temp#cc0000:'" . str_replace(':','\:',str_replace('\*','*',quotemeta($temperature['sensor_descr_fixed'])))."'"; # Ugly hack :(
|
2010-03-18 02:23:45 +00:00
|
|
|
$rrd_options .= " LINE1:tempwarm#660000";
|
2009-10-27 13:04:16 +00:00
|
|
|
$rrd_options .= " GPRINT:temp:LAST:%3.0lfC";
|
2010-07-13 10:00:17 +00:00
|
|
|
$rrd_options .= " GPRINT:temp:MIN:%3.0lfC";
|
2009-10-27 13:04:16 +00:00
|
|
|
$rrd_options .= " GPRINT:temp:MAX:%3.0lfC\\\\l";
|
|
|
|
|
|
|
|
?>
|