diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-01-26 18:05:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-01-26 18:05:10 +0000 |
commit | 34a0b66bc2d48223748ed1cf5bc1b305c396bd74 (patch) | |
tree | fbd36be86cc6bc4288fe627f2b5beada569848bb /collectors/node.d.plugin | |
parent | Adding upstream version 1.32.1. (diff) | |
download | netdata-34a0b66bc2d48223748ed1cf5bc1b305c396bd74.tar.xz netdata-34a0b66bc2d48223748ed1cf5bc1b305c396bd74.zip |
Adding upstream version 1.33.0.upstream/1.33.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'collectors/node.d.plugin')
-rw-r--r-- | collectors/node.d.plugin/sma_webbox/README.md | 2 | ||||
-rw-r--r-- | collectors/node.d.plugin/snmp/README.md | 23 |
2 files changed, 19 insertions, 6 deletions
diff --git a/collectors/node.d.plugin/sma_webbox/README.md b/collectors/node.d.plugin/sma_webbox/README.md index ec6b248c3..99e093b70 100644 --- a/collectors/node.d.plugin/sma_webbox/README.md +++ b/collectors/node.d.plugin/sma_webbox/README.md @@ -6,7 +6,7 @@ sidebar_label: "SMA Sunny WebBox" # SMA Sunny WebBox monitoring with Netdata -Montiroing for the [SMA Sunny +Monitoring for the [SMA Sunny WebBox](https://www.sma-sunny.com/en/questions-and-answers-on-discontinuation-of-the-sunny-webbox/). The module supports any number of name servers: diff --git a/collectors/node.d.plugin/snmp/README.md b/collectors/node.d.plugin/snmp/README.md index 93ade5e64..df6d7eaca 100644 --- a/collectors/node.d.plugin/snmp/README.md +++ b/collectors/node.d.plugin/snmp/README.md @@ -183,37 +183,50 @@ The `options` given for each server, are: To use SNMPv3: -- set `version` to 3 - use `user` instead of `community` +- set `version` to 3 User syntax: ```json { - "user": { + "enable_autodetect": false, + "update_every": 10, + "servers": [ + { + "hostname": "10.11.12.8", + "user": { "name": "userName", "level": 3, "authProtocol": "3", "authKey": "authKey", "privProtocol": "2", "privKey": "privKey" + }, + "update_every": 10, + "options": { + "version": 3 + }, + "charts": { + } } + ] } ``` -Security levels: +Security levels (`level`): - 1 is `noAuthNoPriv` - 2 is `authNoPriv` - 3 is `authPriv` -Authentication protocols: +Authentication protocols (`authProtocol`): - "1" is `none` - "2" is `md5` - "3" is `sha` -Privacy protocols: +Privacy protocols (`privProtocol`): - "1" is `none` - "2" is `des` |