aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/cpu.php
blob: 04ef3a4199da2f77c8d4e726e4a1ca318fbbd627 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php

# Collectd CPU plugin

require_once 'conf/common.inc.php';
require_once 'type/GenericStacked.class.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

# grouped
require_once 'inc/collectd.inc.php';
$tinstance = collectd_plugindetail($host, $plugin, 'ti');

$obj = new Type_GenericStacked;
$obj->datadir = $CONFIG['datadir'];
$obj->path_format = '{host}/{plugin}-{pinstance}/{type}-{tinstance}.rrd';
$obj->args = array(
	'host' => $host,
	'plugin' => $plugin,
	'pinstance' => $pinstance,
	'type' => $type,
	'tinstance' => $tinstance,
);
$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->seconds = $seconds;

$obj->rrd_title = "CPU-$pinstance usage on $host";
$obj->rrd_vertical = 'Jiffies';
$obj->rrd_format = '%5.2lf';

$obj->rrd_graph();

?>