-
Notifications
You must be signed in to change notification settings - Fork 271
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #181 from kongfei605/snmp
snmp plugin
- Loading branch information
Showing
8 changed files
with
1,410 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
# Retrieves SNMP values from remote agents | ||
[[instances]] | ||
## 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"] | ||
agents = [ | ||
# | ||
] | ||
|
||
## Timeout for each request. | ||
# timeout = "5s" | ||
|
||
## SNMP version; can be 1, 2, or 3. | ||
# version = 2 | ||
|
||
## Unconnected UDP socket | ||
## When true, SNMP reponses 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 | ||
# 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. | ||
|
||
#[[instances.field]] | ||
#oid = "RFC1213-MIB::sysUpTime.0" | ||
#name = "uptime" | ||
|
||
#[[instances.field]] | ||
#oid = "RFC1213-MIB::sysName.0" | ||
#name = "source" | ||
#is_tag = true | ||
|
||
#[[instances.table]] | ||
#oid = "IF-MIB::ifTable" | ||
#name = "interface" | ||
#inherit_tags = ["source"] | ||
|
||
#[[instances.table.field]] | ||
#oid = "IF-MIB::ifDescr" | ||
#name = "ifDescr" | ||
#is_tag = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
forked from [telegraf/snmp](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/snmp) | ||
|
||
目前只修改了netsnmp的部分 ,配置中为了兼容,保留了path参数。 | ||
|
||
配置示例 | ||
``` | ||
[[instances]] | ||
agents = ["udp://172.30.15.189:161"] | ||
timeout = "5s" | ||
version = 2 | ||
community = "public" | ||
agent_host_tag = "ident" | ||
retries = 1 | ||
[[instances.field]] | ||
oid = "RFC1213-MIB::sysUpTime.0" | ||
name = "uptime" | ||
[[instances.field]] | ||
oid = "RFC1213-MIB::sysName.0" | ||
name = "source" | ||
is_tag = true | ||
[[instances.table]] | ||
oid = "IF-MIB::ifTable" | ||
name = "interface" | ||
inherit_tags = ["source"] | ||
[[instances.table.field]] | ||
oid = "IF-MIB::ifDescr" | ||
name = "ifDescr" | ||
is_tag = true | ||
``` |
Oops, something went wrong.