mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-21 15:33:17 +01:00
fix: Use privileged mode for ICMP only on Windows
This commit is contained in:
parent
519500508a
commit
aecca63e05
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user