cleanup code, set dfltActivities in init() function, this leads to an if less in collect() method
This commit is contained in:
parent
7256f3e52e
commit
fdf148ef35
|
@ -174,9 +174,6 @@ func (s *Sysstat) Gather(acc telegraf.Accumulator) error {
|
||||||
// Sadc -S <Activity1> -S <Activity2> ... <collectInterval> 2 tmpFile
|
// Sadc -S <Activity1> -S <Activity2> ... <collectInterval> 2 tmpFile
|
||||||
// The above command collects system metrics during <collectInterval> and saves it in binary form to tmpFile.
|
// The above command collects system metrics during <collectInterval> and saves it in binary form to tmpFile.
|
||||||
func (s *Sysstat) collect() error {
|
func (s *Sysstat) collect() error {
|
||||||
if len(s.Activities) == 0 {
|
|
||||||
s.Activities = dfltActivities
|
|
||||||
}
|
|
||||||
if len(s.Sadf) == 0 {
|
if len(s.Sadf) == 0 {
|
||||||
sadf, err := exec.LookPath("sadf")
|
sadf, err := exec.LookPath("sadf")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -319,6 +316,7 @@ func init() {
|
||||||
inputs.Add("sysstat", func() telegraf.Input {
|
inputs.Add("sysstat", func() telegraf.Input {
|
||||||
return &Sysstat{
|
return &Sysstat{
|
||||||
Group: true,
|
Group: true,
|
||||||
|
Activities: dfltActivities,
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue