blob: 50789d02ebfe086a9f892fb583e4036ab9f905f0 (
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);
$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();
|