Skip to content
Snippets Groups Projects
Unverified Commit 51e7255f authored by reivilibre's avatar reivilibre Committed by GitHub
Browse files

Fix the *MAU Limits* section of the Grafana dashboard relying on a specific...

Fix the *MAU Limits* section of the Grafana dashboard relying on a specific `job` name for the workers of a Synapse deployment. (#14644)
parent 2920e540
No related branches found
No related tags found
No related merge requests found
Fix the *MAU Limits* section of the Grafana dashboard relying on a specific `job` name for the workers of a Synapse deployment.
\ No newline at end of file
...@@ -1008,8 +1008,7 @@ ...@@ -1008,8 +1008,7 @@
"mode": "absolute", "mode": "absolute",
"steps": [ "steps": [
{ {
"color": "green", "color": "green"
"value": null
}, },
{ {
"color": "red", "color": "red",
...@@ -1681,8 +1680,7 @@ ...@@ -1681,8 +1680,7 @@
"mode": "absolute", "mode": "absolute",
"steps": [ "steps": [
{ {
"color": "green", "color": "green"
"value": null
}, },
{ {
"color": "red", "color": "red",
...@@ -2533,8 +2531,7 @@ ...@@ -2533,8 +2531,7 @@
"mode": "absolute", "mode": "absolute",
"steps": [ "steps": [
{ {
"color": "green", "color": "green"
"value": null
}, },
{ {
"color": "red", "color": "red",
...@@ -11296,7 +11293,7 @@ ...@@ -11296,7 +11293,7 @@
"uid": "$datasource" "uid": "$datasource"
}, },
"editorMode": "code", "editorMode": "code",
"expr": "synapse_admin_mau_max{instance=\"$instance\", job=~\"(hhs_)?synapse\"}", "expr": "max(synapse_admin_mau_max{instance=\"$instance\"})",
"format": "time_series", "format": "time_series",
"interval": "", "interval": "",
"intervalFactor": 1, "intervalFactor": 1,
...@@ -11310,7 +11307,7 @@ ...@@ -11310,7 +11307,7 @@
"uid": "$datasource" "uid": "$datasource"
}, },
"editorMode": "code", "editorMode": "code",
"expr": "synapse_admin_mau_current{instance=\"$instance\", job=~\"(hhs_)?synapse\"}", "expr": "max(synapse_admin_mau_current{instance=\"$instance\"})",
"hide": false, "hide": false,
"legendFormat": "Current", "legendFormat": "Current",
"range": true, "range": true,
...@@ -12760,6 +12757,6 @@ ...@@ -12760,6 +12757,6 @@
"timezone": "", "timezone": "",
"title": "Synapse", "title": "Synapse",
"uid": "000000012", "uid": "000000012",
"version": 149, "version": 150,
"weekStart": "" "weekStart": ""
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment