aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/hddtemp.php
blob: 55261545be0e1ae9fdcf7cb671761830827f6267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

# Collectd HDDTemp plugin

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

## LAYOUT
# hddtemp/temperature-<disk>.rrd

$obj = new Type_Default($CONFIG, $_GET);
$obj->ds_names = array('temperature' => 'Temperature');
$obj->rrd_title = 'HDD Temperature';
$obj->rrd_vertical = '°C';
$obj->rrd_format = '%.1lf';

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