mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
26 lines
966 B
PHP
26 lines
966 B
PHP
|
<?php
|
||
|
|
||
|
include("common.inc.php");
|
||
|
|
||
|
|
||
|
$sensor = mysql_fetch_array(mysql_query("SELECT * FROM entPhysical as E, devices as D WHERE entPhysical_id = '".mres($_GET['a'])."' and D.device_id = E.device_id"));
|
||
|
|
||
|
$rrd_filename = $config['rrd_dir'] . "/" . $sensor['hostname'] . "/ces-" . $sensor['entPhysicalIndex'] . ".rrd";
|
||
|
|
||
|
$type = str_pad($sensor['entSensorType'], 8);
|
||
|
$type = substr($type,0,8);
|
||
|
$rrd_options .= " DEF:avg=$rrd_filename:value:AVERAGE";
|
||
|
$rrd_options .= " DEF:min=$rrd_filename:value:MIN";
|
||
|
$rrd_options .= " DEF:max=$rrd_filename:value:MAX";
|
||
|
$rrd_options .= " COMMENT:' Last Min Max Ave\\n'";
|
||
|
$rrd_options .= " AREA:max#a5a5a5";
|
||
|
$rrd_options .= " AREA:min#ffffff";
|
||
|
$rrd_options .= " LINE1.25:avg#aa2200:'".$type."'";
|
||
|
$rrd_options .= " GPRINT:avg:AVERAGE:%5.2lf%s";
|
||
|
$rrd_options .= " GPRINT:max:MAX:%5.2lf%s";
|
||
|
$rrd_options .= " GPRINT:max:MAX:%5.2lf%s";
|
||
|
$rrd_options .= " GPRINT:avg:LAST:%5.2lf%s";
|
||
|
|
||
|
|
||
|
?>
|