fix: Use privileged mode for ICMP only on Windows

This commit is contained in:
TwiN 2024-04-28 19:05:11 -04:00
parent 519500508a
commit aecca63e05

View File

@ -238,12 +238,8 @@ func Ping(address string, config *Config) (bool, time.Duration) {
pinger := ping.New(address)
pinger.Count = 1
pinger.Timeout = config.Timeout
// Set the pinger's privileged mode to true for every GOOS except darwin
// See https://github.com/TwiN/gatus/issues/132
//
// Note that for this to work on Linux, Gatus must run with sudo privileges.
// See https://github.com/prometheus-community/pro-bing#linux
pinger.SetPrivileged(runtime.GOOS != "darwin")
// See https://github.com/TwiN/gatus/issues/132 and https://github.com/TwiN/gatus/issues/697
pinger.SetPrivileged(runtime.GOOS == "windows")
pinger.SetNetwork(config.Network)
err := pinger.Run()
if err != nil {