1
0
Fork 0
telegraf/plugins/inputs/cgroup/cgroup_notlinux.go

12 lines
149 B
Go
Raw Normal View History

//go:build !linux
package cgroup
import (
"github.com/influxdata/telegraf"
)
func (*CGroup) Gather(_ telegraf.Accumulator) error {
return nil
}