Skip to content
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

Add critical alert if cluster is throttling for two hours #523

Open
wants to merge 4 commits into
base: 2/edge
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/alert_rules/prometheus/prometheus_alerts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -138,3 +138,13 @@
"for": "5m"
"labels":
"severity": "warning"

- "alert": "OpenSearchThrottlingTooLong"
"annotations":
"message": "Cluster {{ $labels.cluster }} is throttling for two hours. Please optimize queries and indexing patterns or consider scale the application."
phvalguima marked this conversation as resolved.
Show resolved Hide resolved
"summary": "OpenSearch Indexing Throttle too long"
"expr": |
sum by (cluster) (opensearch_indices_indexing_is_throttled_bool) > 0
"for": "2h"
"labels":
"severity": "critical"
Loading