Skip to content

Commit

Permalink
grafana: logarithmic scale for service/host counts
Browse files Browse the repository at this point in the history
Those can get pretty large: in our case we're at 4k service checks,
and we have 20 of those warning right now, which makes them completely
invisible in the graph. By making the axis logarithmic, we're able to
see progression on those lines as well.
  • Loading branch information
anarcat committed Dec 12, 2023
1 parent 7e07aca commit 068a5d1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions grafana/dashboard.json
Original file line number Diff line number Diff line change
Expand Up @@ -1720,7 +1720,8 @@
"lineWidth": 4,
"pointSize": 5,
"scaleDistribution": {
"type": "linear"
"log": 2,
"type": "log"
},
"showPoints": "auto",
"spanNulls": false,
Expand Down Expand Up @@ -1845,7 +1846,8 @@
"lineWidth": 4,
"pointSize": 5,
"scaleDistribution": {
"type": "linear"
"log": 2,
"type": "log"
},
"showPoints": "auto",
"spanNulls": false,
Expand Down

0 comments on commit 068a5d1

Please sign in to comment.