diff options
author | onefang | 2019-12-23 13:09:24 +1000 |
---|---|---|
committer | onefang | 2019-12-23 13:09:24 +1000 |
commit | 1c767e021e6c086fe806ebf7ccffaad8864f3413 (patch) | |
tree | 12e65ded52dc0e4cc1760422d9c9110804006c91 /plugin | |
parent | Add another small help instruction. (diff) | |
download | apt-panopticon_cgp-1c767e021e6c086fe806ebf7ccffaad8864f3413.zip apt-panopticon_cgp-1c767e021e6c086fe806ebf7ccffaad8864f3413.tar.gz apt-panopticon_cgp-1c767e021e6c086fe806ebf7ccffaad8864f3413.tar.bz2 apt-panopticon_cgp-1c767e021e6c086fe806ebf7ccffaad8864f3413.tar.xz |
Speed RRD is now it's own thing, not a separate one per protocol.
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/HTTPS.json | 18 | ||||
-rw-r--r-- | plugin/Speed.json | 20 |
2 files changed, 20 insertions, 18 deletions
diff --git a/plugin/HTTPS.json b/plugin/HTTPS.json index ac6f719..2c6ddeb 100644 --- a/plugin/HTTPS.json +++ b/plugin/HTTPS.json | |||
@@ -30,23 +30,5 @@ | |||
30 | } | 30 | } |
31 | }, | 31 | }, |
32 | "legend_format": "%5.0lf" | 32 | "legend_format": "%5.0lf" |
33 | }, | ||
34 | "Speed": { | ||
35 | "title": "Speed range on {{HOST}}", | ||
36 | "vertical": "bytes per second", | ||
37 | "type": "stacked", | ||
38 | "legend": { | ||
39 | "max": { | ||
40 | "name": "Maximum", | ||
41 | "color": "ffff00" | ||
42 | }, | ||
43 | "min": { | ||
44 | "name": "Minimum", | ||
45 | "color": "000000" | ||
46 | } | ||
47 | }, | ||
48 | "legend_format": "%5.1lf%s", | ||
49 | "datasize": true | ||
50 | } | 33 | } |
51 | } | 34 | } |
52 | |||
diff --git a/plugin/Speed.json b/plugin/Speed.json new file mode 100644 index 0000000..8ca4a46 --- /dev/null +++ b/plugin/Speed.json | |||
@@ -0,0 +1,20 @@ | |||
1 | { | ||
2 | "Speed": { | ||
3 | "title": "Speed range on {{HOST}}", | ||
4 | "vertical": "bytes per second", | ||
5 | "type": "stacked", | ||
6 | "legend": { | ||
7 | "max": { | ||
8 | "name": "Maximum", | ||
9 | "color": "ffff00" | ||
10 | }, | ||
11 | "min": { | ||
12 | "name": "Minimum", | ||
13 | "color": "000000" | ||
14 | } | ||
15 | }, | ||
16 | "legend_format": "%5.1lf%s", | ||
17 | "datasize": true | ||
18 | } | ||
19 | } | ||
20 | |||