diff options
Diffstat (limited to 'plugin/apache.json')
| -rw-r--r-- | plugin/apache.json | 143 |
1 files changed, 143 insertions, 0 deletions
diff --git a/plugin/apache.json b/plugin/apache.json new file mode 100644 index 0000000..3774371 --- /dev/null +++ b/plugin/apache.json | |||
| @@ -0,0 +1,143 @@ | |||
| 1 | { | ||
| 2 | "apache_bytes": { | ||
| 3 | "title": "Webserver Traffic ({{PI}})", | ||
| 4 | "vertical": "{{ND}}/s", | ||
| 5 | "legend": { | ||
| 6 | "value": { | ||
| 7 | "name": "Traffic", | ||
| 8 | "color": "0000ff" | ||
| 9 | } | ||
| 10 | }, | ||
| 11 | "legend_format": "%5.1lf" | ||
| 12 | }, | ||
| 13 | "apache_connections": { | ||
| 14 | "title": "Webserver Connections ({{PI}})", | ||
| 15 | "vertical": "Conns/s", | ||
| 16 | "legend": { | ||
| 17 | "value": { | ||
| 18 | "name": "Conns/s", | ||
| 19 | "color": "00b000" | ||
| 20 | } | ||
| 21 | }, | ||
| 22 | "legend_format": "%5.1lf" | ||
| 23 | }, | ||
| 24 | "apache_idle_workers": { | ||
| 25 | "title": "Webserver Idle Workers ({{PI}})", | ||
| 26 | "vertical": "Workers", | ||
| 27 | "legend": { | ||
| 28 | "value": { | ||
| 29 | "name": "Workers", | ||
| 30 | "color": "0000ff" | ||
| 31 | } | ||
| 32 | }, | ||
| 33 | "legend_format": "%5.1lf" | ||
| 34 | }, | ||
| 35 | "apache_requests": { | ||
| 36 | "title": "Webserver Requests ({{PI}})", | ||
| 37 | "vertical": "Requests/s", | ||
| 38 | "legend": { | ||
| 39 | "value": { | ||
| 40 | "name": "Requests/s", | ||
| 41 | "color": "0000ff" | ||
| 42 | } | ||
| 43 | }, | ||
| 44 | "legend_format": "%5.1lf" | ||
| 45 | }, | ||
| 46 | "apache_scoreboard": { | ||
| 47 | "title": "Webserver Scoreboard ({{PI}})", | ||
| 48 | "vertical": "Slots", | ||
| 49 | "type": "stacked", | ||
| 50 | "legend": { | ||
| 51 | "open": { | ||
| 52 | "name": "Open (empty)", | ||
| 53 | "color": "e0e0e0" | ||
| 54 | }, | ||
| 55 | "idle_cleanup": { | ||
| 56 | "name": "Idle cleanup", | ||
| 57 | "color": "ffff00" | ||
| 58 | }, | ||
| 59 | "finishing": { | ||
| 60 | "name": "Finishing", | ||
| 61 | "color": "008080" | ||
| 62 | }, | ||
| 63 | "logging": { | ||
| 64 | "name": "Logging", | ||
| 65 | "color": "a000a0" | ||
| 66 | }, | ||
| 67 | "closing": { | ||
| 68 | "name": "Closing", | ||
| 69 | "color": "000080" | ||
| 70 | }, | ||
| 71 | "dnslookup": { | ||
| 72 | "name": "DNS Lookup", | ||
| 73 | "color": "ff0000" | ||
| 74 | }, | ||
| 75 | "keepalive": { | ||
| 76 | "name": "Keepalive", | ||
| 77 | "color": "0080ff" | ||
| 78 | }, | ||
| 79 | "sending": { | ||
| 80 | "name": "Sending reply", | ||
| 81 | "color": "00e000" | ||
| 82 | }, | ||
| 83 | "reading": { | ||
| 84 | "name": "Reading request", | ||
| 85 | "color": "0000ff" | ||
| 86 | }, | ||
| 87 | "starting": { | ||
| 88 | "name": "Starting up", | ||
| 89 | "color": "ff00ff" | ||
| 90 | }, | ||
| 91 | "waiting": { | ||
| 92 | "name": "Waiting", | ||
| 93 | "color": "ffb000" | ||
| 94 | }, | ||
| 95 | |||
| 96 | "connect": { | ||
| 97 | "name": "Connect (empty)", | ||
| 98 | "color": "e0e0e0" | ||
| 99 | }, | ||
| 100 | "hard_error": { | ||
| 101 | "name": "Hard error", | ||
| 102 | "color": "ff0000" | ||
| 103 | }, | ||
| 104 | "close": { | ||
| 105 | "name": "Close", | ||
| 106 | "color": "008080" | ||
| 107 | }, | ||
| 108 | "response_end": { | ||
| 109 | "name": "Request end", | ||
| 110 | "color": "a000a0" | ||
| 111 | }, | ||
| 112 | "write": { | ||
| 113 | "name": "Write", | ||
| 114 | "color": "000080" | ||
| 115 | }, | ||
| 116 | "response_start": { | ||
| 117 | "name": "Response start", | ||
| 118 | "color": "ffff00" | ||
| 119 | }, | ||
| 120 | "handle_request": { | ||
| 121 | "name": "Handle request", | ||
| 122 | "color": "0080ff" | ||
| 123 | }, | ||
| 124 | "read_post": { | ||
| 125 | "name": "Read POST", | ||
| 126 | "color": "00e000" | ||
| 127 | }, | ||
| 128 | "request_end": { | ||
| 129 | "name": "Request end", | ||
| 130 | "color": "0000ff" | ||
| 131 | }, | ||
| 132 | "read": { | ||
| 133 | "name": "Read", | ||
| 134 | "color": "ff00ff" | ||
| 135 | }, | ||
| 136 | "request_start": { | ||
| 137 | "name": "Request start", | ||
| 138 | "color": "ffb000" | ||
| 139 | } | ||
| 140 | }, | ||
| 141 | "legend_format": "%5.2lf" | ||
| 142 | } | ||
| 143 | } | ||
