add dashboard for deluge (#389)

Co-authored-by: ibizaman <ibizapeanut@gmail.com>
This commit is contained in:
Pierre Penninckx 2024-12-02 23:02:04 +01:00 committed by GitHub
parent a839080a15
commit 60a375de01
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 1176 additions and 2 deletions

View file

@ -14,6 +14,10 @@ Template:
# Upcoming Release # Upcoming Release
## Other Changes
- Add dashboard for deluge.
# v0.2.5 # v0.2.5
## Other Changes ## Other Changes

View file

@ -1 +1 @@
0.2.5 0.2.6

View file

@ -14,6 +14,9 @@
"blocks-monitoring-configuration": [ "blocks-monitoring-configuration": [
"blocks-monitoring.html#blocks-monitoring-configuration" "blocks-monitoring.html#blocks-monitoring-configuration"
], ],
"blocks-monitoring-deluge-dashboard": [
"blocks-monitoring.html#blocks-monitoring-deluge-dashboard"
],
"blocks-monitoring-error-dashboard": [ "blocks-monitoring-error-dashboard": [
"blocks-monitoring.html#blocks-monitoring-error-dashboard" "blocks-monitoring.html#blocks-monitoring-error-dashboard"
], ],

File diff suppressed because it is too large Load diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 330 KiB

View file

@ -112,6 +112,13 @@ This dashboard is meant to be the first stop to understand why a service is perf
![Performance Dashboard Middle Part](./assets/dashboards_Performance_2.png) ![Performance Dashboard Middle Part](./assets/dashboards_Performance_2.png)
![Performance Dashboard Bottom Part](./assets/dashboards_Performance_3.png) ![Performance Dashboard Bottom Part](./assets/dashboards_Performance_3.png)
## Deluge Dashboard {#blocks-monitoring-deluge-dashboard}
This dashboard is used to monitor a [deluge](./services-deluge.html) instance.
![Deluge Dashboard Top Part](./assets/dashboards_Deluge_1.png)
![Deluge Dashboard Bottom Part](./assets/dashboards_Deluge_2.png)
## Requests Error Budget Alert {#blocks-monitoring-budget-alerts} ## Requests Error Budget Alert {#blocks-monitoring-budget-alerts}
This alert will fire when the ratio between number of requests getting a 5XX response from a service This alert will fire when the ratio between number of requests getting a 5XX response from a service

View file

@ -262,7 +262,7 @@ in
type = lib.types.nullOr (lib.types.enum ["critical" "error" "warning" "info" "debug"]); type = lib.types.nullOr (lib.types.enum ["critical" "error" "warning" "info" "debug"]);
description = "Enable logging."; description = "Enable logging.";
default = null; default = null;
example = true; example = "info";
}; };
}; };