Skip to content
Snippets Groups Projects
Commit 516dffa4 authored by Patrick Hemmer's avatar Patrick Hemmer Committed by Daniel Nelson
Browse files

set default measurement name on snmp input (#2639)

parent 62b5c1f7
No related branches found
No related tags found
No related merge requests found
......@@ -96,6 +96,7 @@ be deprecated eventually.
- [#2596](https://github.com/influxdata/telegraf/pull/2596): fix timestamp parsing on prometheus plugin
- [#2610](https://github.com/influxdata/telegraf/pull/2610): Fix deadlock when output cannot write
- [#2410](https://github.com/influxdata/telegraf/issues/2410): Fix connection leak in postgresql.
- [#2628](https://github.com/influxdata/telegraf/issues/2628): Set default measurement name for snmp input.
## v1.2.1 [2017-02-01]
......
......@@ -314,6 +314,7 @@ func Errorf(err error, msg string, format ...interface{}) error {
func init() {
inputs.Add("snmp", func() telegraf.Input {
return &Snmp{
Name: "snmp",
Retries: 3,
MaxRepetitions: 10,
Timeout: internal.Duration{Duration: 5 * time.Second},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment