Skip to content

Commit

Permalink
Tweak threshold as it is too sensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
djjudas21 committed Aug 29, 2024
1 parent d641e66 commit 1fb83ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dist/charts/ping-exporter/files/prometheus.rules
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
- alert: HighPingLossRatio
expr: round(ping_loss_ratio * 100) > 0
expr: round(ping_loss_ratio * 100) > 5
for: 5m
labels:
severity: warning
annotations:
summary: High ping loss ratio for {{ $labels.target }}
description: "Ping loss ratio for {{ $labels.target }} is {{ $value }}"
description: "Ping loss ratio for {{ $labels.target }} is {{ $value }}%"
- alert: HighPingRtt
expr: round(ping_rtt_mean_seconds * 1000, 0.1) > 100
for: 5m
Expand Down

0 comments on commit 1fb83ef

Please sign in to comment.