increase default amount of averaged pings

This commit is contained in:
2023-11-15 20:26:33 +01:00
parent 4a1cad6054
commit ebc4d0104a

View File

@@ -21,7 +21,7 @@ type ContinuousPinger struct {
var (
Waybar = flag.Bool("waybar", false, "output waybar json format")
PingCount = flag.Int("count", 3, "how many pings to average")
PingCount = flag.Int("count", 5, "how many pings to average")
PingWarningLimit = flag.Int("warn", 50, "ping warning limit")
PingCritLimit = flag.Int("crit", 100, "ping critical limit")
PacketLossWarnLimit = flag.Int("pwarn", 10, "package-loss warning limit")