aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/cpu.php
blob: a0a19fc06384c22dd125b36cb3cc458009196153 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php

# Collectd CPU plugin

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

## LAYOUT
# cpu-X/
# cpu-X/cpu-idle.rrd
# cpu-X/cpu-interrupt.rrd
# cpu-X/cpu-nice.rrd
# cpu-X/cpu-softirq.rrd
# cpu-X/cpu-steal.rrd
# cpu-X/cpu-system.rrd
# cpu-X/cpu-user.rrd
# cpu-X/cpu-wait.rrd

$obj = new Type_GenericStacked($CONFIG);
$obj->data_sources = array('value');
$obj->order = array('idle', 'nice', 'user', 'wait', 'system', 'softirq', 'interrupt', 'steal');
$obj->ds_names = array(
	'idle' => 'Idle',
	'nice' => 'Nice',
	'user' => 'User',
	'wait' => 'Wait-IO',
	'system' => 'System',
	'softirq' => 'SoftIRQ',
	'interrupt' => 'IRQ',
	'steal' => 'Steal',
);
$obj->colors = array(
	'idle' => 'e8e8e8',
	'nice' => '00e000',
	'user' => '0000ff',
	'wait' => 'ffb000',
	'system' => 'ff0000',
	'softirq' => 'ff00ff',
	'interrupt' => 'a000a0',
	'steal' => '000000',
);
$obj->width = $width;
$obj->heigth = $heigth;

$obj->rrd_title = sprintf('CPU-%s usage', $obj->args['pinstance']);
$obj->rrd_vertical = 'Jiffies';
$obj->rrd_format = '%5.2lf';
$obj->rrdtool_opts .= ' -u 100';

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