aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/cpu.php
diff options
context:
space:
mode:
authorPim van den Berg2009-09-28 19:53:38 +0200
committerPim van den Berg2009-09-28 20:05:29 +0200
commitdb5bc6fbd9a568bd3267fecff076da455d5e23f7 (patch)
tree7d215ed55f1aee8a41172def9707e58e9d91c003 /plugin/cpu.php
parentadd a footer to each page (diff)
downloadapt-panopticon_cgp-db5bc6fbd9a568bd3267fecff076da455d5e23f7.zip
apt-panopticon_cgp-db5bc6fbd9a568bd3267fecff076da455d5e23f7.tar.gz
apt-panopticon_cgp-db5bc6fbd9a568bd3267fecff076da455d5e23f7.tar.bz2
apt-panopticon_cgp-db5bc6fbd9a568bd3267fecff076da455d5e23f7.tar.xz
change webdir/weburl and include/require usage
- Don't depend on includes from files that are included. - Don't use webdir with includes/requires (also because webdir couldn't be available in some cases). - Use common.inc.php instead of config.php in all plugins to have all configuration settings available.
Diffstat (limited to 'plugin/cpu.php')
-rw-r--r--plugin/cpu.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugin/cpu.php b/plugin/cpu.php
index 10fbf56..04ef3a4 100644
--- a/plugin/cpu.php
+++ b/plugin/cpu.php
@@ -2,8 +2,8 @@
2 2
3# Collectd CPU plugin 3# Collectd CPU plugin
4 4
5require_once $CONFIG['webdir'].'/conf/config.php'; 5require_once 'conf/common.inc.php';
6require_once $CONFIG['webdir'].'/type/GenericStacked.class.php'; 6require_once 'type/GenericStacked.class.php';
7 7
8## LAYOUT 8## LAYOUT
9# cpu-X/ 9# cpu-X/
@@ -17,7 +17,7 @@ require_once $CONFIG['webdir'].'/type/GenericStacked.class.php';
17# cpu-X/cpu-wait.rrd 17# cpu-X/cpu-wait.rrd
18 18
19# grouped 19# grouped
20require_once $CONFIG['webdir'].'/inc/collectd.inc.php'; 20require_once 'inc/collectd.inc.php';
21$tinstance = collectd_plugindetail($host, $plugin, 'ti'); 21$tinstance = collectd_plugindetail($host, $plugin, 'ti');
22 22
23$obj = new Type_GenericStacked; 23$obj = new Type_GenericStacked;