Move nginx helper (#4501)

This commit is contained in:
Manuel Alejandro de Brito Fontes 2019-08-30 20:18:11 -04:00 committed by GitHub
parent 8740c1b661
commit 72cb7f5e14
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 13 deletions

View file

@ -24,7 +24,6 @@ import (
"syscall"
"time"
ps "github.com/mitchellh/go-ps"
"github.com/ncabatoff/process-exporter/proc"
"k8s.io/klog"
)
@ -82,14 +81,3 @@ func WaitUntilPortIsAvailable(port int) {
time.Sleep(100 * time.Millisecond)
}
}
// IsNginxRunning returns true if a process with the name 'nginx' is found
func IsNginxRunning() bool {
processes, _ := ps.Processes()
for _, p := range processes {
if p.Executable() == "nginx" {
return true
}
}
return false
}