22 lines
373 B
Go
22 lines
373 B
Go
|
// +build !linux
|
||
|
|
||
|
package wireless
|
||
|
|
||
|
import (
|
||
|
"log"
|
||
|
|
||
|
"github.com/influxdata/telegraf"
|
||
|
"github.com/influxdata/telegraf/plugins/inputs"
|
||
|
)
|
||
|
|
||
|
func (w *Wireless) Gather(acc telegraf.Accumulator) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
inputs.Add("wireless", func() telegraf.Input {
|
||
|
log.Print("W! [inputs.wireless] Current platform is not supported")
|
||
|
return &Wireless{}
|
||
|
})
|
||
|
}
|