ingress-nginx-helm/vendor/github.com/ncabatoff/process-exporter/common.go
Manuel Alejandro de Brito Fontes 9278f0cad2
Update metric dependencies (#5023)
2020-02-06 09:50:13 -03:00

23 lines
363 B
Go

package common
import (
"fmt"
"time"
)
type (
ProcAttributes struct {
Name string
Cmdline []string
Username string
PID int
StartTime time.Time
}
MatchNamer interface {
// MatchAndName returns false if the match failed, otherwise
// true and the resulting name.
MatchAndName(ProcAttributes) (bool, string)
fmt.Stringer
}
)