Skip to content

Commit

Permalink
improve ping_host_reachable alert calc (netdata#17982)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyam8 authored Jun 20, 2024
1 parent 6f76453 commit 19ab6ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/health/health.d/ping.conf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
type: Other
component: Network
lookup: average -30s unaligned of loss
calc: $this != nan AND $this < 100
calc: ($this == nan) ? (nan) : ($this < 100)
units: up/down
every: 10s
crit: $this == 0
Expand Down

0 comments on commit 19ab6ab

Please sign in to comment.