aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin
diff options
context:
space:
mode:
Diffstat (limited to 'plugin')
-rw-r--r--plugin/cpufreq.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/plugin/cpufreq.php b/plugin/cpufreq.php
new file mode 100644
index 0000000..ef2162b
--- /dev/null
+++ b/plugin/cpufreq.php
@@ -0,0 +1,22 @@
1<?php
2
3# Collectd CPUfreq plugin
4
5require_once 'conf/common.inc.php';
6require_once 'type/Default.class.php';
7require_once 'inc/collectd.inc.php';
8
9## LAYOUT
10# cpufreq/cpufreq-X.rrd
11
12$obj = new Type_Default($CONFIG);
13$obj->data_sources = array('value');
14$obj->width = $width;
15$obj->heigth = $heigth;
16$obj->generate_colors();
17$obj->rrd_title = 'CPU frequency scaling';
18$obj->rrd_vertical = 'Mhz';
19$obj->rrd_format = '%5.1lf%s';
20
21collectd_flush($obj->identifiers);
22$obj->rrd_graph();