2009-10-27 13:04:16 +00:00
|
|
|
<?php
|
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
$scale_min = '0';
|
2009-11-07 02:30:38 +00:00
|
|
|
|
2019-04-11 23:26:42 -05:00
|
|
|
require 'includes/html/graphs/common.inc.php';
|
2012-04-05 16:47:39 +00:00
|
|
|
|
2016-07-07 01:33:43 -05:00
|
|
|
$rrd_filename = rrd_name($device['hostname'], 'uptime');
|
2009-10-27 13:04:16 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
$rrd_options .= ' DEF:uptime='.$rrd_filename.':uptime:AVERAGE';
|
|
|
|
$rrd_options .= ' CDEF:cuptime=uptime,86400,/';
|
2011-09-18 18:22:07 +00:00
|
|
|
$rrd_options .= " 'COMMENT:Days Current Minimum Maximum Average\\n'";
|
2017-03-02 12:07:55 -06:00
|
|
|
$rrd_options .= ' AREA:cuptime#00FF0022:Uptime';
|
2015-07-10 13:36:21 +02:00
|
|
|
$rrd_options .= ' LINE1.25:cuptime#36393D:';
|
2019-04-11 15:05:18 -07:00
|
|
|
$rrd_options .= ' GPRINT:cuptime:LAST:%6.2lf GPRINT:cuptime:MIN:%6.2lf';
|
2011-09-18 18:22:07 +00:00
|
|
|
$rrd_options .= " GPRINT:cuptime:MAX:%6.2lf 'GPRINT:cuptime:AVERAGE:%6.2lf\\n'";
|