1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

docs: fix wrong grafana query

This commit is contained in:
Christopher Kolstad 2021-06-14 15:43:57 +02:00 committed by GitHub
parent a8c8046b9f
commit cceb360b3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,7 @@ Unleash will automatically count all updates for all toggles under the metric na
You can use this query in grafana to achieve this:
```
delta(feature_toggle_update_total{toggle="Demo"}[1m]) != bool 0?
delta(feature_toggle_update_total{toggle="Demo"}[1m]) != bool 0
```
Another useful counter is the `feature_toggle_usage_total` which will give you the numbers for how many times a feature toggle has been evaluated to `active` or not.