@cryptotaxi247 / netdata-1 / commits / 2ea79a5eb

Regenerate integrations docs (#21956)

Co-authored-by: ilyam8 <22274335+ilyam8@users.noreply.github.com>

Netdata bot committed Mar 16, 2026 at 21:58 UTC 2ea79a5ebbbbebe2b4fca1f7cd5109e2dc521c70
1 file changed +38
src/go/plugin/go.d/collector/snmp/integrations/snmp_devices.md
+38
@@ -402,6 +402,44 @@ jobs:
402 ```
403 </details>
404
405 +###### SNMPv3 with multiple devices
406 +
407 +This example monitors multiple SNMP devices that share the same SNMPv3 credentials.
408 +
409 +It uses [YAML anchors](https://yaml.org/spec/1.2.2/#3222-anchors-and-aliases) to define the
410 +full job once (`&snmp_v3_job`) and then reuse it with `<<: *snmp_v3_job`,
411 +overriding only `name` and `hostname` for each additional device.
412 +
413 +
414 +<details open><summary>Config</summary>
415 +
416 +```yaml
417 +jobs:
418 + - &snmp_v3_job
419 + name: switch1
420 + update_every: 10
421 + hostname: 192.0.2.1
422 + options:
423 + version: 3
424 + user:
425 + name: username
426 + level: authPriv
427 + auth_proto: sha256
428 + auth_key: auth_protocol_passphrase
429 + priv_proto: aes256
430 + priv_key: priv_protocol_passphrase
431 +
432 + - <<: *snmp_v3_job
433 + name: switch2
434 + hostname: 192.0.2.2
435 +
436 + - <<: *snmp_v3_job
437 + name: switch3
438 + hostname: 192.0.2.3
439 +
440 +```
441 +</details>
442 +
443
444
445 ## Troubleshooting