aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/cpu.json
diff options
context:
space:
mode:
authorPim van den Berg2014-05-03 19:17:16 +0200
committerPim van den Berg2014-05-12 21:32:24 +0200
commit0a547add2f4cc264380d2dab2c472efe5a1d7094 (patch)
tree55bb43a3e31c5814848d61eea92c8438e4a37886 /plugin/cpu.json
parenttype/base: set default title to "Plugin Type (PluginInstance) (Category)" (diff)
downloadapt-panopticon_cgp-0a547add2f4cc264380d2dab2c472efe5a1d7094.zip
apt-panopticon_cgp-0a547add2f4cc264380d2dab2c472efe5a1d7094.tar.gz
apt-panopticon_cgp-0a547add2f4cc264380d2dab2c472efe5a1d7094.tar.bz2
apt-panopticon_cgp-0a547add2f4cc264380d2dab2c472efe5a1d7094.tar.xz
graph.php: use JSON plugins instead of including PHP plugin files
A couple of big changes here. A lot of logic moved to graph.php. The PHP plugin files have been rewritten to JSON. In these JSON files *everything* is optional. Also *NOT* having a JSON plugin file won't block you from having a graph. The JSON will just make the graphs prettier (by having a title, y-axis title, legend, colors, etc..). The Collectd types.db file is parsed and used to determine RRD content. When things are not defined in the JSON it will fallback to a default.
Diffstat (limited to 'plugin/cpu.json')
-rw-r--r--plugin/cpu.json43
1 files changed, 43 insertions, 0 deletions
diff --git a/plugin/cpu.json b/plugin/cpu.json
new file mode 100644
index 0000000..50254f8
--- /dev/null
+++ b/plugin/cpu.json
@@ -0,0 +1,43 @@
1{
2 "cpu": {
3 "title": "CPU-{{PI}} usage",
4 "vertical": "Jiffies",
5 "rrdtool_opts": "-u 100",
6 "type": "stacked",
7 "legend": {
8 "idle": {
9 "name": "Idle",
10 "color": "e8e8e8"
11 },
12 "nice": {
13 "name": "Nice",
14 "color": "00e000"
15 },
16 "user": {
17 "name": "User",
18 "color": "0000ff"
19 },
20 "wait": {
21 "name": "Wait-IO",
22 "color": "ffb000"
23 },
24 "system": {
25 "name": "System",
26 "color": "ff0000"
27 },
28 "softirq": {
29 "name": "SoftIRQ",
30 "color": "ff00ff"
31 },
32 "interrupt": {
33 "name": "IRQ",
34 "color": "a000a0"
35 },
36 "steal": {
37 "name": "Steal",
38 "color": "000000"
39 }
40 },
41 "legend_format": "%5.2lf"
42 }
43}