Files
akvorado/config/outlet.yaml
Vincent Bernat 3aaca8f540 docs: fix documentation for SNMPv3
The doc was mentioning `security-parameters`, which was removed.
Moreover, it was used incorrectly. Also update the default configuration
to avoid confusion around `provider` and `providers`, even if both
matches.
2025-09-27 14:32:17 +02:00

32 lines
1.0 KiB
YAML

---
metadata:
providers:
- type: snmp
credentials:
::/0:
communities: public
routing:
provider:
type: bmp
# Before increasing this value, look for it in the troubleshooting section
# of the documentation.
receive-buffer: 212992
core:
exporter-classifiers:
# This is an example. This should be customized depending on how
# your exporters are named.
- ClassifySiteRegex(Exporter.Name, "^([^-]+)-", "$1")
- ClassifyRegion("europe")
- ClassifyTenant("acme")
- ClassifyRole("edge")
interface-classifiers:
# This is an example. This must be customized depending on the
# descriptions of your interfaces. In the following, we assume
# external interfaces are named "Transit: Cogent" Or "IX:
# FranceIX".
- |
ClassifyConnectivityRegex(Interface.Description, "^(?i)(transit|pni|ppni|ix):? ", "$1") &&
ClassifyProviderRegex(Interface.Description, "^\\S+?\\s(\\S+)", "$1") &&
ClassifyExternal()
- ClassifyInternal()