Update godeps
This commit is contained in:
parent
86dbf979cb
commit
f7011d22f8
108 changed files with 7093 additions and 4947 deletions
14
vendor/github.com/ncabatoff/process-exporter/common.go
generated
vendored
Normal file
14
vendor/github.com/ncabatoff/process-exporter/common.go
generated
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
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)
|
||||
}
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue