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

# Collectd Thermal plugin

require_once 'conf/common.inc.php';
require_once 'type/Default.class.php';
require_once 'inc/collectd.inc.php';

## LAYOUT
# thermal-XXXX/
# thermal-XXXX/gauge.rrd

$obj = new Type_Default($CONFIG, $_GET);
$obj->ds_names = array(
	'value' => 'Temperature',
);
switch($obj->args['type']) {
	case 'gauge':
		$obj->rrd_title = sprintf('Temperature (%s)', $obj->args['pinstance']);
		$obj->rrd_vertical = '°C';
		$obj->rrd_format = '%.1lf';
	break;
}

collectd_flush($obj->identifiers);
$obj->rrd_graph();