blob: 58d810b5fb511e5ca01855027f41eff04d82acc6 (
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
27
28
29
30
31
32
33
34
35
36
37
|
<?php
# Collectd Entropy plugin
require_once 'conf/common.inc.php';
require_once 'type/Default.class.php';
## LAYOUT
# entropy/entropy.rrd
$obj = new Type_Default;
$obj->datadir = $CONFIG['datadir'];
$obj->path_format = '{host}/{plugin}/{type}.rrd';
$obj->args = array(
'host' => $host,
'plugin' => $plugin,
'pinstance' => $pinstance,
'type' => $type,
'tinstance' => $tinstance,
);
$obj->data_sources = array('entropy');
$obj->ds_names = array(
'entropy' => 'Entropy bits',
);
$obj->colors = array(
'entropy' => '0000f0',
);
$obj->width = $width;
$obj->heigth = $heigth;
$obj->seconds = $seconds;
$obj->rrd_title = "Available entropy on $host";
$obj->rrd_vertical = 'Bits';
$obj->rrd_format = '%4.0lf';
$obj->rrd_graph();
?>
|