Skip to content

Commit

Permalink
chore: fix incorrect expr for server stats in Grafana dashboard.json
Browse files Browse the repository at this point in the history
Signed-off-by: Minchao <[email protected]>
  • Loading branch information
minchao committed Dec 9, 2024
1 parent 96d0226 commit 30a9bb5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/dashboard.json
Original file line number Diff line number Diff line change
Expand Up @@ -2883,7 +2883,7 @@
"datasource": {
"uid": "$datasource"
},
"expr": "go_memstats_heap_alloc_bytes{job=\"argocd-repo-server-metrics\",namespace=~\"$namespace\"}",
"expr": "go_memstats_heap_alloc_bytes{job=\"argocd-server-metrics\",namespace=~\"$namespace\"}",
"format": "time_series",
"intervalFactor": 1,
"legendFormat": "{{pod}}",
Expand Down Expand Up @@ -2968,7 +2968,7 @@
"datasource": {
"uid": "$datasource"
},
"expr": "go_goroutines{job=\"argocd-repo-server-metrics\",namespace=~\"$namespace\"}",
"expr": "go_goroutines{job=\"argocd-server-metrics\",namespace=~\"$namespace\"}",
"format": "time_series",
"intervalFactor": 1,
"legendFormat": "{{pod}}",
Expand Down Expand Up @@ -3270,7 +3270,7 @@
"datasource": {
"uid": "$datasource"
},
"expr": "go_gc_duration_seconds{job=\"argocd-repo-server-metrics\", quantile=\"1\", namespace=~\"$namespace\"}",
"expr": "go_gc_duration_seconds{job=\"argocd-server-metrics\", quantile=\"1\", namespace=~\"$namespace\"}",
"format": "time_series",
"intervalFactor": 2,
"legendFormat": "{{pod}}",
Expand Down

0 comments on commit 30a9bb5

Please sign in to comment.