mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
alerts: correct expression for DiskRunsOutOfSpaceIn3Days
(#2856)
The negative value for ETA can happen when deduplication is enabled and `rate` over `vm_deduplicated_samples_total` becomes bigger than actual ingestion rate. Signed-off-by: hagen1778 <roman@victoriametrics.com>
This commit is contained in:
parent
7cbcbea49d
commit
a42063909f
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ groups:
|
|||
sum(vm_data_size_bytes{type!="indexdb"}) /
|
||||
sum(vm_rows{type!="indexdb"})
|
||||
)
|
||||
) < 3 * 24 * 3600
|
||||
) < 3 * 24 * 3600 > 0
|
||||
for: 30m
|
||||
labels:
|
||||
severity: critical
|
||||
|
|
Loading…
Reference in a new issue