blob: fb39ecb940239b4d89fc0f84e8283e3e0b8b0b0d (
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
|
<?php
# Collectd Thermal plugin
require_once 'conf/common.inc.php';
require_once 'type/Default.class.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;
}
$obj->rrd_graph();
|