Replies: 0 comments 7 replies
-
One solution I like would be to use
In the let sli_threshold = 100.0 / (100.0 - objective) So the threshold for the current builtin values would be
The |
Beta Was this translation helpful? Give feedback.
-
I think we can give a default value, that's pretty low, e.g |
Beta Was this translation helpful? Give feedback.
-
We ended up adding a minimum threshold of 1 request per minute to the alerting rules |
Beta Was this translation helpful? Give feedback.
-
While trying to find information about reducing the NaN in the to-be-released autometrics grafana dashboard, I found how to make sloth generated SLIs ignore datapoints when the count of events do not meet a threshold I think autometrics-dev/autometrics-rs@1bd54d9
If instead of
> 0
we use> count
we should be able to force a threshold of “minimum events to trigger an alert” from my understanding. But I don’t know what value should be added there if not 0, because it might not be valid for most projects. Should we use a default value ourself? Should we just ask for a threshold on generation?Beta Was this translation helpful? Give feedback.
All reactions