Deprecate uptime_format field in system input (#5708)
This commit is contained in:
parent
4079e4605f
commit
9ea7cdd319
|
@ -25,7 +25,7 @@ the `telegraf` user to be added to the `utmp` group on some systems.
|
||||||
- n_users (integer)
|
- n_users (integer)
|
||||||
- n_cpus (integer)
|
- n_cpus (integer)
|
||||||
- uptime (integer, seconds)
|
- uptime (integer, seconds)
|
||||||
- uptime_format (string)
|
- uptime_format (string, deprecated in 1.10, use `uptime` field)
|
||||||
|
|
||||||
### Example Output:
|
### Example Output:
|
||||||
|
|
||||||
|
|
|
@ -9,11 +9,10 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/shirou/gopsutil/host"
|
|
||||||
"github.com/shirou/gopsutil/load"
|
|
||||||
|
|
||||||
"github.com/influxdata/telegraf"
|
"github.com/influxdata/telegraf"
|
||||||
"github.com/influxdata/telegraf/plugins/inputs"
|
"github.com/influxdata/telegraf/plugins/inputs"
|
||||||
|
"github.com/shirou/gopsutil/host"
|
||||||
|
"github.com/shirou/gopsutil/load"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SystemStats struct{}
|
type SystemStats struct{}
|
||||||
|
@ -22,7 +21,12 @@ func (_ *SystemStats) Description() string {
|
||||||
return "Read metrics about system load & uptime"
|
return "Read metrics about system load & uptime"
|
||||||
}
|
}
|
||||||
|
|
||||||
func (_ *SystemStats) SampleConfig() string { return "" }
|
func (_ *SystemStats) SampleConfig() string {
|
||||||
|
return `
|
||||||
|
## Uncomment to remove deprecated metrics.
|
||||||
|
# fielddrop = ["uptime_format"]
|
||||||
|
`
|
||||||
|
}
|
||||||
|
|
||||||
func (_ *SystemStats) Gather(acc telegraf.Accumulator) error {
|
func (_ *SystemStats) Gather(acc telegraf.Accumulator) error {
|
||||||
loadavg, err := load.Avg()
|
loadavg, err := load.Avg()
|
||||||
|
|
Loading…
Reference in New Issue