diff options
author | reivilibre <oliverw@matrix.org> | 2022-12-13 14:19:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-13 14:19:43 +0000 |
commit | 51e7255fbb684245e664ae9e715bfac77b4dd103 (patch) | |
tree | 306cc24a6cdf3db8ab3f0ece3a5e02c404817be6 /contrib/grafana | |
parent | Use the room type from stats in hierarchy response. (#14263) (diff) | |
download | synapse-51e7255fbb684245e664ae9e715bfac77b4dd103.tar.xz |
Fix the *MAU Limits* section of the Grafana dashboard relying on a specific `job` name for the workers of a Synapse deployment. (#14644)
Diffstat (limited to 'contrib/grafana')
-rw-r--r-- | contrib/grafana/synapse.json | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/contrib/grafana/synapse.json b/contrib/grafana/synapse.json index 68705b6e6d..f09cd6f87c 100644 --- a/contrib/grafana/synapse.json +++ b/contrib/grafana/synapse.json @@ -1008,8 +1008,7 @@ "mode": "absolute", "steps": [ { - "color": "green", - "value": null + "color": "green" }, { "color": "red", @@ -1681,8 +1680,7 @@ "mode": "absolute", "steps": [ { - "color": "green", - "value": null + "color": "green" }, { "color": "red", @@ -2533,8 +2531,7 @@ "mode": "absolute", "steps": [ { - "color": "green", - "value": null + "color": "green" }, { "color": "red", @@ -11296,7 +11293,7 @@ "uid": "$datasource" }, "editorMode": "code", - "expr": "synapse_admin_mau_max{instance=\"$instance\", job=~\"(hhs_)?synapse\"}", + "expr": "max(synapse_admin_mau_max{instance=\"$instance\"})", "format": "time_series", "interval": "", "intervalFactor": 1, @@ -11310,7 +11307,7 @@ "uid": "$datasource" }, "editorMode": "code", - "expr": "synapse_admin_mau_current{instance=\"$instance\", job=~\"(hhs_)?synapse\"}", + "expr": "max(synapse_admin_mau_current{instance=\"$instance\"})", "hide": false, "legendFormat": "Current", "range": true, @@ -12760,6 +12757,6 @@ "timezone": "", "title": "Synapse", "uid": "000000012", - "version": 149, + "version": 150, "weekStart": "" } \ No newline at end of file |