ingress-nginx-helm/vendor/github.com/ncabatoff/process-exporter/common.go
Manuel de Brito Fontes f7011d22f8 Update godeps
2016-11-29 18:10:06 -03:00

14 lines
260 B
Go

package common
type (
NameAndCmdline struct {
Name string
Cmdline []string
}
MatchNamer interface {
// MatchAndName returns false if the match failed, otherwise
// true and the resulting name.
MatchAndName(NameAndCmdline) (bool, string)
}
)