Skip to content

Commit 9680123

Browse files
authored
fix(inputs.snmp_trap): Remove timeout deprecation (#16145)
1 parent 427b8d3 commit 9680123

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

plugins/inputs/snmp_trap/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ details.
6262
## To add paths when translating with netsnmp, use the MIBDIRS environment variable
6363
# path = ["/usr/share/snmp/mibs"]
6464
##
65-
## Deprecated in 1.20.0; no longer running snmptranslate
6665
## Timeout running snmptranslate command
66+
## Used by the netsnmp translator only
6767
# timeout = "5s"
6868
## Snmp version; one of "1", "2c" or "3".
6969
# version = "2c"

plugins/inputs/snmp_trap/sample.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
## To add paths when translating with netsnmp, use the MIBDIRS environment variable
1515
# path = ["/usr/share/snmp/mibs"]
1616
##
17-
## Deprecated in 1.20.0; no longer running snmptranslate
1817
## Timeout running snmptranslate command
18+
## Used by the netsnmp translator only
1919
# timeout = "5s"
2020
## Snmp version; one of "1", "2c" or "3".
2121
# version = "2c"

plugins/inputs/snmp_trap/snmp_trap.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ func (l wrapLog) Print(args ...interface{}) {
4343

4444
type SnmpTrap struct {
4545
ServiceAddress string `toml:"service_address"`
46-
Timeout config.Duration `toml:"timeout" deprecated:"1.20.0;1.35.0;unused option"`
46+
Timeout config.Duration `toml:"timeout"`
4747
Version string `toml:"version"`
4848
Translator string `toml:"-"`
4949
Path []string `toml:"path"`

0 commit comments

Comments
 (0)