snmp-mqtt/deployment/config.json

45 lines
953 B
JSON
Raw Normal View History

2024-01-25 12:35:27 +01:00
{
"mqtt": {
"broker": "mqtt://emqx01-anonymous-cluster-internal.broker.svc.cluster.local:1883",
"tlsEnable": "false",
2024-01-25 14:35:41 +01:00
"topic": "snmp"
2024-01-25 12:35:27 +01:00
},
2024-01-25 14:35:41 +01:00
"interval": 10,
2024-01-25 12:35:27 +01:00
"snmpEndpoints": [
{
"endpoint": "172.16.3.1",
"label": "router",
"community": "public",
"oidTopics": [
{
2024-01-25 16:10:53 +01:00
"oid": ".1.3.6.1.2.1.31.1.1.1.6.5",
2024-01-25 14:35:41 +01:00
"label": "wan-in",
"diff": "true"
2024-01-25 12:35:27 +01:00
},
{
2024-01-25 16:10:53 +01:00
"oid": ".1.3.6.1.2.1.31.1.1.1.10.5",
2024-01-25 14:35:41 +01:00
"label": "wan-out",
"diff": "true"
2024-01-25 12:35:27 +01:00
}
]
2024-01-26 14:39:08 +01:00
},
{
2024-05-06 19:00:13 +02:00
"endpoint": "172.16.3.3",
2024-01-26 14:39:08 +01:00
"label": "switch-cluster",
"community": "public",
"oidTopics": [
{
"oid": ".1.3.6.1.2.1.31.1.1.1.6.1",
"label": "uplink-in",
"diff": "true"
},
{
"oid": ".1.3.6.1.2.1.31.1.1.1.10.1",
"label": "uplink-out",
"diff": "true"
}
]
2024-01-25 12:35:27 +01:00
}
]
}