aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/contextswitch.php
blob: 71f6d9d53ba25334a67dd10ba9022f099a294ee6 (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
<?php

# Collectd contextswitch plugin

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

## LAYOUT
# contextswitch/contextswitch.rrd

$obj = new Type_Default($CONFIG, $_GET);
$obj->data_sources = array('value');
$obj->ds_names = array(
	'value' => 'Context switches',
);
$obj->colors = array(
	'value' => '0000f0',
);
$obj->rrd_title = 'Context switches';
$obj->rrd_vertical = 'switch per second Bits';
$obj->rrd_format = '%4.0lf';

# backwards compatibility
if ($CONFIG['version'] < 5) {
	$obj->data_sources = array('contextswitches');

	$obj->ds_names['contextswitches'] = $obj->ds_names['value'];
	unset($obj->ds_names['value']);

	$obj->colors['contextswitches'] = $obj->colors['value'];
	unset($obj->colors['value']);
}

$obj->rrd_graph();