Fix undefined process.Processes when building telegraf on Solaris-based system

This commit is contained in:
Sam Zaydel 2018-07-26 15:10:44 -07:00
parent d9d9688f3d
commit 391d5ecf7d
1 changed files with 8 additions and 0 deletions

View File

@ -36,6 +36,14 @@ func PidsWithContext(ctx context.Context) ([]int32, error) {
return []int32{}, common.ErrNotImplementedError
}
func Processes() ([]*Process, error) {
return nil, common.ErrNotImplementedError
}
func ProcessesWithContext(ctx context.Context) ([]*Process, error) {
return nil, common.ErrNotImplementedError
}
func NewProcess(pid int32) (*Process, error) {
return nil, common.ErrNotImplementedError
}