12 lines
250 B
Go
12 lines
250 B
Go
|
|
package infiniband
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/influxdata/telegraf"
|
||
|
|
)
|
||
|
|
|
||
|
|
// Stores the configuration values for the infiniband plugin - as there are no
|
||
|
|
// config values, this is intentionally empty
|
||
|
|
type Infiniband struct {
|
||
|
|
Log telegraf.Logger `toml:"-"`
|
||
|
|
}
|