88 lines
3 KiB
Text
88 lines
3 KiB
Text
|
# Retrieves SNMP values from remote agents
|
||
|
[[inputs.snmp]]
|
||
|
## Agent addresses to retrieve values from.
|
||
|
## format: agents = ["<scheme://><hostname>:<port>"]
|
||
|
## scheme: optional, either udp, udp4, udp6, tcp, tcp4, tcp6.
|
||
|
## default is udp
|
||
|
## port: optional
|
||
|
## example: agents = ["udp://127.0.0.1:161"]
|
||
|
## agents = ["tcp://127.0.0.1:161"]
|
||
|
## agents = ["udp4://v4only-snmp-agent"]
|
||
|
agents = ["udp://127.0.0.1:161"]
|
||
|
|
||
|
## Timeout for each request.
|
||
|
# timeout = "5s"
|
||
|
|
||
|
## SNMP version; can be 1, 2, or 3.
|
||
|
# version = 2
|
||
|
|
||
|
## Unconnected UDP socket
|
||
|
## When true, SNMP responses are accepted from any address not just
|
||
|
## the requested address. This can be useful when gathering from
|
||
|
## redundant/failover systems.
|
||
|
# unconnected_udp_socket = false
|
||
|
|
||
|
## Path to mib files
|
||
|
## Used by the gosmi translator.
|
||
|
## To add paths when translating with netsnmp, use the MIBDIRS environment variable
|
||
|
# path = ["/usr/share/snmp/mibs"]
|
||
|
|
||
|
## SNMP community string.
|
||
|
# community = "public"
|
||
|
|
||
|
## Agent host tag; should be set to "source" for consistent usage across plugins
|
||
|
## example: agent_host_tag = "source"
|
||
|
## The default value is inconsistent with other plugins. Users will get a
|
||
|
## warning that can be ignored if this is not changed. However, to have a
|
||
|
## consistent experience, set this to "source" in your config to align with
|
||
|
## other plugins.
|
||
|
# agent_host_tag = "agent_host"
|
||
|
|
||
|
## Number of retries to attempt.
|
||
|
# retries = 3
|
||
|
|
||
|
## The GETBULK max-repetitions parameter.
|
||
|
# max_repetitions = 10
|
||
|
|
||
|
## SNMPv3 authentication and encryption options.
|
||
|
##
|
||
|
## Security Name.
|
||
|
# sec_name = "myuser"
|
||
|
## Authentication protocol; one of "MD5", "SHA", "SHA224", "SHA256", "SHA384", "SHA512" or "".
|
||
|
# auth_protocol = "MD5"
|
||
|
## Authentication password.
|
||
|
# auth_password = "pass"
|
||
|
## Security Level; one of "noAuthNoPriv", "authNoPriv", or "authPriv".
|
||
|
# sec_level = "authNoPriv"
|
||
|
## Context Name.
|
||
|
# context_name = ""
|
||
|
## Privacy protocol used for encrypted messages; one of "DES", "AES", "AES192", "AES192C", "AES256", "AES256C", or "".
|
||
|
### Protocols "AES192", "AES192", "AES256", and "AES256C" require the underlying net-snmp tools
|
||
|
### to be compiled with --enable-blumenthal-aes (http://www.net-snmp.org/docs/INSTALL.html)
|
||
|
# priv_protocol = ""
|
||
|
## Privacy password used for encrypted messages.
|
||
|
# priv_password = ""
|
||
|
|
||
|
## Add fields and tables defining the variables you wish to collect. This
|
||
|
## example collects the system uptime and interface variables. Reference the
|
||
|
## full plugin documentation for configuration details.
|
||
|
[[inputs.snmp.field]]
|
||
|
oid = "RFC1213-MIB::sysUpTime.0"
|
||
|
name = "sysUptime"
|
||
|
conversion = "float(2)"
|
||
|
|
||
|
[[inputs.snmp.field]]
|
||
|
oid = "RFC1213-MIB::sysName.0"
|
||
|
name = "sysName"
|
||
|
is_tag = true
|
||
|
|
||
|
[[inputs.snmp.table]]
|
||
|
oid = "IF-MIB::ifTable"
|
||
|
name = "interface"
|
||
|
inherit_tags = ["sysName"]
|
||
|
|
||
|
[[inputs.snmp.table.field]]
|
||
|
oid = "IF-MIB::ifDescr"
|
||
|
name = "ifDescr"
|
||
|
is_tag = true
|