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