-
Notifications
You must be signed in to change notification settings - Fork 55
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
Added alert for failed compator run. #206
Conversation
increase(cortex_compactor_runs_failed_total[10m]) > 0 | ||
|||, | ||
labels: { | ||
severity: 'warning', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Warnings are generally ignored. Can we remove potential noise from the alert and make it a critical
one?
For example, assuming there's some work to do at least every 2h, we could have a critical alert like this:
- expr:
increase(cortex_compactor_runs_failed_total{cluster="us-central1"}[3h]) > 0
- for:
2h
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated based on offline discussion.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks!
…alert Added alert for failed compator run.
What this PR does: This PR adds new alert for failed compactor run.