aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/hddtemp.php
blob: 1c90b78552f0e2afa5343496017b47b6f5ed45a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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);
$obj->ds_names = array('temperature' => 'Temperature');
$obj->width = $width;
$obj->heigth = $heigth;
$obj->rrd_title = 'HDD Temperature';
$obj->rrd_vertical = '°C';
$obj->rrd_format = '%.1lf';

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