diff options
author | Pim van den Berg | 2014-05-03 18:15:12 +0200 |
---|---|---|
committer | Pim van den Berg | 2014-05-03 19:21:36 +0200 |
commit | edae75c21a8f657dd6cc9ace9e8e844ef337a951 (patch) | |
tree | da0c2b4a1ef35a3d2d8c129925e257f6a6f7fbe3 /plugin/aggregation.php | |
parent | type/base: set default values for rrd_title and rrd_format (diff) | |
download | apt-panopticon_cgp-edae75c21a8f657dd6cc9ace9e8e844ef337a951.zip apt-panopticon_cgp-edae75c21a8f657dd6cc9ace9e8e844ef337a951.tar.gz apt-panopticon_cgp-edae75c21a8f657dd6cc9ace9e8e844ef337a951.tar.bz2 apt-panopticon_cgp-edae75c21a8f657dd6cc9ace9e8e844ef337a951.tar.xz |
rename ds_names and dsname to legend
This had nothing to do with an RRD data source.
Diffstat (limited to '')
-rw-r--r-- | plugin/aggregation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/aggregation.php b/plugin/aggregation.php index 2a74403..0d28fae 100644 --- a/plugin/aggregation.php +++ b/plugin/aggregation.php | |||
@@ -15,7 +15,7 @@ switch($pi[0]) { | |||
15 | $obj = new Type_GenericStacked($CONFIG, $_GET); | 15 | $obj = new Type_GenericStacked($CONFIG, $_GET); |
16 | $obj->data_sources = array('value'); | 16 | $obj->data_sources = array('value'); |
17 | $obj->order = array('idle', 'nice', 'user', 'wait', 'system', 'softirq', 'interrupt', 'steal'); | 17 | $obj->order = array('idle', 'nice', 'user', 'wait', 'system', 'softirq', 'interrupt', 'steal'); |
18 | $obj->ds_names = array( | 18 | $obj->legend = array( |
19 | 'idle' => 'Idle', | 19 | 'idle' => 'Idle', |
20 | 'nice' => 'Nice', | 20 | 'nice' => 'Nice', |
21 | 'user' => 'User', | 21 | 'user' => 'User', |