-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wrong alert rules defined for latency #43
Comments
I think you might have misconfigured the |
Then maybe the problem is in the code generating the rules in https://promtools.dev/alerts/latency, as it is what @wei-lee used to generate the alerts. @metalmatze should know better 😄 |
Yes, that's probably a problem with promtools.dev itself. |
The problem looks indeed related with promtools.dev and the |
This can be safely closed. |
Issue is still present on https://promtools.dev/alerts/latency |
At the moment, the generated alert rules for latency is something like this:
The corresponding recording rule for this alert is something like this:
which means the value of this recording rule will never be bigger than 1. That means the alert will never be fired.
If my understanding is correct, we should either multiply the recording rule by 100, or change
1
to0.01
in the alerts.The text was updated successfully, but these errors were encountered: