aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/processes.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/processes.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/processes.php')
-rw-r--r--plugin/processes.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugin/processes.php b/plugin/processes.php
index 445e1e4..32a925d 100644
--- a/plugin/processes.php
+++ b/plugin/processes.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# processes/ 9# processes/
@@ -15,7 +15,7 @@ require_once $CONFIG['webdir'].'/type/GenericStacked.class.php';
15# processes/ps_state-sleeping.rrd 15# processes/ps_state-sleeping.rrd
16 16
17# grouped 17# grouped
18require_once $CONFIG['webdir'].'/inc/collectd.inc.php'; 18require_once 'inc/collectd.inc.php';
19$tinstance = collectd_plugindetail($host, $plugin, 'ti'); 19$tinstance = collectd_plugindetail($host, $plugin, 'ti');
20 20
21$obj = new Type_GenericStacked; 21$obj = new Type_GenericStacked;