warning
2.11.1.OpenSearch host CPU usage high
System CPU usage on OpenSearch node {{ $labels.node }} (cluster {{ $labels.cluster }}) is above 90%, which may cause search and indexing latency.
- alert: OpenSearchHostCPUUsageHigh
expr: sum by (cluster, instance, node) (opensearch_os_cpu_percent) > 90
for: 5m
labels:
severity: warning
annotations:
summary: OpenSearch host CPU usage high (instance {{ $labels.instance }})
description: "System CPU usage on OpenSearch node {{ $labels.node }} (cluster {{ $labels.cluster }}) is above 90%, which may cause search and indexing latency.\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"warning
2.11.2.OpenSearch process CPU usage high
CPU usage of the OpenSearch process on node {{ $labels.node }} (cluster {{ $labels.cluster }}) is above 90%, indicating heavy load on the JVM process.
- alert: OpenSearchProcessCPUUsageHigh
expr: sum by (cluster, instance, node) (opensearch_process_cpu_percent) > 90
for: 5m
labels:
severity: warning
annotations:
summary: OpenSearch process CPU usage high (instance {{ $labels.instance }})
description: "CPU usage of the OpenSearch process on node {{ $labels.node }} (cluster {{ $labels.cluster }}) is above 90%, indicating heavy load on the JVM process.\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"warning
2.11.3.OpenSearch high heap usage
OpenSearch heap usage on cluster {{ $labels.cluster }} is too high
- alert: OpenSearchHighHeapUsage
expr: opensearch_jvm_mem_heap_used_percent > 75
for: 10m
labels:
severity: warning
annotations:
summary: OpenSearch high heap usage (instance {{ $labels.instance }})
description: "OpenSearch heap usage on cluster {{ $labels.cluster }} is too high\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"critical
2.11.4.OpenSearch disk high watermark reached
Disk usage on OpenSearch node {{ $labels.node }} (cluster {{ $labels.cluster }}) is above the high watermark (90%): OpenSearch will start relocating existing shards away from this node.
- alert: OpenSearchDiskHighWatermarkReached
expr: sum by (cluster, instance, node) (round((1 - (opensearch_fs_path_available_bytes / opensearch_fs_path_total_bytes)) * 100, 0.001)) > 90
for: 5m
labels:
severity: critical
annotations:
summary: OpenSearch disk high watermark reached (instance {{ $labels.instance }})
description: "Disk usage on OpenSearch node {{ $labels.node }} (cluster {{ $labels.cluster }}) is above the high watermark (90%): OpenSearch will start relocating existing shards away from this node.\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"warning
2.11.5.OpenSearch disk low watermark reached
Disk usage on OpenSearch node {{ $labels.node }} (cluster {{ $labels.cluster }}) is above the low watermark (85%): OpenSearch will stop allocating new shards to this node.
- alert: OpenSearchDiskLowWatermarkReached
expr: sum by (cluster, instance, node) (round((1 - (opensearch_fs_path_available_bytes / opensearch_fs_path_total_bytes)) * 100, 0.001)) > 85
for: 5m
labels:
severity: warning
annotations:
summary: OpenSearch disk low watermark reached (instance {{ $labels.instance }})
description: "Disk usage on OpenSearch node {{ $labels.node }} (cluster {{ $labels.cluster }}) is above the low watermark (85%): OpenSearch will stop allocating new shards to this node.\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"critical
2.11.6.OpenSearch is red
OpenSearch cluster {{ $labels.cluster }} is RED: some primary shards are unassigned
- alert: OpenSearchIsRed
expr: opensearch_cluster_status == 2
for: 2m
labels:
severity: critical
annotations:
summary: OpenSearch is red (instance {{ $labels.instance }})
description: "OpenSearch cluster {{ $labels.cluster }} is RED: some primary shards are unassigned\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"warning
2.11.7.OpenSearch is yellow
OpenSearch cluster {{ $labels.cluster }} is YELLOW: some replica shards are unassigned
- alert: OpenSearchIsYellow
expr: opensearch_cluster_status == 1
for: 5m
labels:
severity: warning
annotations:
summary: OpenSearch is yellow (instance {{ $labels.instance }})
description: "OpenSearch cluster {{ $labels.cluster }} is YELLOW: some replica shards are unassigned\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"warning
2.11.8.OpenSearch circuitbreaker tripped
The circuitbreaker on OpenSearch cluster {{ $labels.cluster }} has tripped to prevent Java OutOfMemoryError
- alert: OpenSearchCircuitbreakerTripped
expr: increase(opensearch_circuitbreaker_tripped_count[5m]) > 0
for: 5m
labels:
severity: warning
annotations:
summary: OpenSearch circuitbreaker tripped (instance {{ $labels.instance }})
description: "The circuitbreaker on OpenSearch cluster {{ $labels.cluster }} has tripped to prevent Java OutOfMemoryError\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"warning
2.11.9.OpenSearch has pending tasks
OpenSearch cluster {{ $labels.cluster }} has pending tasks
- alert: OpenSearchHasPendingTasks
expr: opensearch_cluster_pending_tasks_number > 0
for: 5m
labels:
severity: warning
annotations:
summary: OpenSearch has pending tasks (instance {{ $labels.instance }})
description: "OpenSearch cluster {{ $labels.cluster }} has pending tasks\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"warning
2.11.10.OpenSearch indexing is throttled
Indexing on OpenSearch cluster {{ $labels.cluster }} is throttled
- alert: OpenSearchIndexingIsThrottled
expr: opensearch_indices_indexing_is_throttled_bool > 0
for: 5m
labels:
severity: warning
annotations:
summary: OpenSearch indexing is throttled (instance {{ $labels.instance }})
description: "Indexing on OpenSearch cluster {{ $labels.cluster }} is throttled\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"warning
2.11.11.OpenSearch has inactive shards
OpenSearch cluster {{ $labels.cluster }} has inactive shards
- alert: OpenSearchHasInactiveShards
expr: opensearch_cluster_shards_active_percent < 100.0
for: 5m
labels:
severity: warning
annotations:
summary: OpenSearch has inactive shards (instance {{ $labels.instance }})
description: "OpenSearch cluster {{ $labels.cluster }} has inactive shards\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"warning
2.11.12.OpenSearch high bulk rejection rate
The ratio of rejected to completed bulk indexing requests on OpenSearch node {{ $labels.node }} is {{ $value }}%, meaning the node cannot keep up with bulk indexing throughput.
# 5% rejection ratio is a rough default; depends on your indexing throughput relative to the configured bulk thread pool/queue size — adjust based on your workload.
- alert: OpenSearchHighBulkRejectionRate
expr: round((rate(opensearch_threadpool_threads_count{name="bulk",type="rejected"}[5m]) / rate(opensearch_threadpool_threads_count{name="bulk",type="completed"}[5m])) * 100, 0.001) > 5
for: 5m
labels:
severity: warning
annotations:
summary: OpenSearch high bulk rejection rate (instance {{ $labels.instance }})
description: "The ratio of rejected to completed bulk indexing requests on OpenSearch node {{ $labels.node }} is {{ $value }}%, meaning the node cannot keep up with bulk indexing throughput.\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"