aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/entropy.php
blob: 01bd183805b0286b961010265e81f1db6d299a1c (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
<?php

# Collectd Entropy plugin

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

## LAYOUT
# entropy/entropy.rrd

$obj = new Type_Default($CONFIG);
$obj->data_sources = array('entropy');
$obj->ds_names = array(
	'entropy' => 'Entropy bits',
);
$obj->colors = array(
	'entropy' => '0000f0',
);
$obj->width = $width;
$obj->heigth = $heigth;
$obj->rrd_title = 'Available entropy';
$obj->rrd_vertical = 'Bits';
$obj->rrd_format = '%4.0lf';

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