aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/uptime.php
blob: ca45d76258e9de04a55d6ccf8004647af938859d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php

# Collectd Uptime plugin

require_once 'conf/common.inc.php';
require_once 'type/Uptime.class.php';

## LAYOUT
# uptime/uptime.rrd

$obj = new Type_Uptime($CONFIG, $_GET);
$obj->data_sources = array('value');
$obj->legend = array(
	'value' => 'Current',
);
$obj->colors = array(
	'value' => '00e000',
);
$obj->rrd_title = 'Uptime';
$obj->rrd_vertical = 'Days';
$obj->rrd_format = '%.1lf';

$obj->rrd_graph();