diff options
| author | Pim van den Berg | 2014-05-03 19:17:16 +0200 |
|---|---|---|
| committer | Pim van den Berg | 2014-05-12 21:32:24 +0200 |
| commit | 0a547add2f4cc264380d2dab2c472efe5a1d7094 (patch) | |
| tree | 55bb43a3e31c5814848d61eea92c8438e4a37886 /plugin/disk.json | |
| parent | type/base: set default title to "Plugin Type (PluginInstance) (Category)" (diff) | |
| download | apt-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/disk.json')
| -rw-r--r-- | plugin/disk.json | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/plugin/disk.json b/plugin/disk.json new file mode 100644 index 0000000..2d14715 --- /dev/null +++ b/plugin/disk.json | |||
| @@ -0,0 +1,67 @@ | |||
| 1 | { | ||
| 2 | "disk_merged": { | ||
| 3 | "title": "Disk Merged Operations ({{PI}})", | ||
| 4 | "vertical": "Merged operations/s", | ||
| 5 | "type": "io", | ||
| 6 | "legend": { | ||
| 7 | "read": { | ||
| 8 | "name": "Read", | ||
| 9 | "color": "0000ff" | ||
| 10 | }, | ||
| 11 | "write": { | ||
| 12 | "name": "Write", | ||
| 13 | "color": "00b000" | ||
| 14 | } | ||
| 15 | }, | ||
| 16 | "legend_format": "%5.1lf%s" | ||
| 17 | }, | ||
| 18 | "disk_octets": { | ||
| 19 | "title": "Disk Traffic ({{PI}})", | ||
| 20 | "vertical": "Bytes per second", | ||
| 21 | "type": "io", | ||
| 22 | "legend": { | ||
| 23 | "read": { | ||
| 24 | "name": "Read", | ||
| 25 | "color": "0000ff" | ||
| 26 | }, | ||
| 27 | "write": { | ||
| 28 | "name": "Write", | ||
| 29 | "color": "00b000" | ||
| 30 | } | ||
| 31 | }, | ||
| 32 | "legend_format": "%5.1lf%s" | ||
| 33 | }, | ||
| 34 | "disk_ops": { | ||
| 35 | "title": "Disk Operations ({{PI}})", | ||
| 36 | "vertical": "Ops per second", | ||
| 37 | "type": "io", | ||
| 38 | "legend": { | ||
| 39 | "read": { | ||
| 40 | "name": "Read", | ||
| 41 | "color": "0000ff" | ||
| 42 | }, | ||
| 43 | "write": { | ||
| 44 | "name": "Write", | ||
| 45 | "color": "00b000" | ||
| 46 | } | ||
| 47 | }, | ||
| 48 | "legend_format": "%5.1lf%s" | ||
| 49 | }, | ||
| 50 | "disk_time": { | ||
| 51 | "title": "Disk time per operation ({{PI}})", | ||
| 52 | "vertical": "Avg. Time/Op", | ||
| 53 | "type": "io", | ||
| 54 | "legend": { | ||
| 55 | "read": { | ||
| 56 | "name": "Read", | ||
| 57 | "color": "0000ff" | ||
| 58 | }, | ||
| 59 | "write": { | ||
| 60 | "name": "Write", | ||
| 61 | "color": "00b000" | ||
| 62 | } | ||
| 63 | }, | ||
| 64 | "legend_format": "%5.1lf%ss", | ||
| 65 | "scale": 0.001 | ||
| 66 | } | ||
| 67 | } | ||
