You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
alarm_description="Average elasticsearch cluster status is in red over last ${var.alarm_cluster_status_is_red_periods*var.alarm_cluster_status_is_red_period/60} minute(s)"
24
+
alarm_description="Average elasticsearch cluster status is in red over last ${floor(var.alarm_cluster_status_is_red_periods* var.alarm_cluster_status_is_red_period/60)} minute(s)"
alarm_description="Average elasticsearch cluster status is in yellow over last ${var.alarm_cluster_status_is_yellow_periods*var.alarm_cluster_status_is_yellow_period/60} minute(s)"
47
+
alarm_description="Average elasticsearch cluster status is in yellow over last ${floor(var.alarm_cluster_status_is_yellow_periods* var.alarm_cluster_status_is_yellow_period/60)} minute(s)"
alarm_description="Minimum free disk space on a single node under ${local.thresholds["FreeStorageSpaceThreshold"]}MB for the last ${var.alarm_free_storage_space_too_low_periods*var.alarm_free_storage_space_too_low_period/60} minute(s)"
70
+
alarm_description="Minimum free disk space on a single node under ${local.thresholds["FreeStorageSpaceThreshold"]}MB for the last ${floor(var.alarm_free_storage_space_too_low_periods* var.alarm_free_storage_space_too_low_period/60)} minute(s)"
alarm_description="Total aggregate free disk space under ${local.thresholds["FreeStorageSpaceTotalThreshold"]}MB for the last ${var.alarm_free_storage_space_total_too_low_periods*var.alarm_free_storage_space_total_too_low_period/60} minute(s)"
94
+
alarm_description="Total aggregate free disk space under ${local.thresholds["FreeStorageSpaceTotalThreshold"]}MB for the last ${floor(var.alarm_free_storage_space_total_too_low_periods* var.alarm_free_storage_space_total_too_low_period/60)} minute(s)"
alarm_description="Elasticsearch index writes being blocker over last ${var.alarm_cluster_index_writes_blocked_periods*var.alarm_cluster_index_writes_blocked_period/60} minute(s)"
119
+
alarm_description="Elasticsearch index writes being blocker over last ${floor(var.alarm_cluster_index_writes_blocked_periods* var.alarm_cluster_index_writes_blocked_period/60)} minute(s)"
alarm_description="Elasticsearch automated snapshot failed over last ${var.alarm_automated_snapshot_failure_periods*var.alarm_automated_snapshot_failure_period/60} minute(s)"
165
+
alarm_description="Elasticsearch automated snapshot failed over last ${floor(var.alarm_automated_snapshot_failure_periods* var.alarm_automated_snapshot_failure_period/60)} minute(s)"
alarm_description="Average elasticsearch cluster CPU utilization above ${local.thresholds["CPUUtilizationThreshold"]} over last ${var.alarm_cpu_utilization_too_high_periods*var.alarm_cpu_utilization_too_high_period/60} minute(s) too high"
188
+
alarm_description="Average elasticsearch cluster CPU utilization above ${local.thresholds["CPUUtilizationThreshold"]} over last ${floor(var.alarm_cpu_utilization_too_high_periods* var.alarm_cpu_utilization_too_high_period/60)} minute(s) too high"
alarm_description="Elasticsearch JVM memory pressure is over ${local.thresholds["JVMMemoryPressureThreshold"]} over the last ${var.alarm_jvm_memory_pressure_too_high_periods*var.alarm_jvm_memory_pressure_too_high_period/60} minute(s)"
210
+
alarm_description="Elasticsearch JVM memory pressure is over ${local.thresholds["JVMMemoryPressureThreshold"]} over the last ${floor(var.alarm_jvm_memory_pressure_too_high_periods* var.alarm_jvm_memory_pressure_too_high_period/60)} minute(s)"
alarm_description="Average elasticsearch cluster master CPU utilization above ${local.thresholds["MasterCPUUtilizationThreshold"]} over last ${var.alarm_master_cpu_utilization_too_high_periods*var.alarm_master_cpu_utilization_too_high_period/60} minute(s) too high"
232
+
alarm_description="Average elasticsearch cluster master CPU utilization above ${local.thresholds["MasterCPUUtilizationThreshold"]} over last ${floor(var.alarm_master_cpu_utilization_too_high_periods* var.alarm_master_cpu_utilization_too_high_period/60)} minute(s) too high"
alarm_description="Elasticsearch JVM memory pressure is over ${local.thresholds["MasterJVMMemoryPressureThreshold"]} over the last ${var.alarm_master_jvm_memory_pressure_too_high_periods*var.alarm_master_jvm_memory_pressure_too_high_period/60} minute(s)"
254
+
alarm_description="Elasticsearch JVM memory pressure is over ${local.thresholds["MasterJVMMemoryPressureThreshold"]} over the last ${floor(var.alarm_master_jvm_memory_pressure_too_high_periods* var.alarm_master_jvm_memory_pressure_too_high_period/60)} minute(s)"
0 commit comments