MqttMongoNodejs/MqttMongoNodejs-Prod.conf

36 lines
945 B
Plaintext
Raw Normal View History

2018-05-14 15:23:00 +02:00
{
"brokerUrl": "mqtt://127.0.0.1:1883",
"brokerUser": "",
"brokerPass": "",
"brokerCa": "",
2018-06-03 21:52:32 +02:00
"mongodbUrl": "mongodb://172.16.3.15/smarthome",
2018-05-14 15:23:00 +02:00
"instances": [
{
"instanceId": "logging",
"collection": "eventlog",
2018-05-14 15:30:22 +02:00
"topics": [ "homegear/#", "IoT/#", "dispatcher_ng/#" ],
2018-05-14 15:23:00 +02:00
"encapsulate": true,
2018-05-14 16:34:32 +02:00
"parsePayload": false,
"verbose": false
2018-05-14 15:23:00 +02:00
},
{
"instanceId": "rain",
"collection": "rain",
"topics": [ "IoT/RainSensor1/#" ],
"encapsulate": true,
2018-05-14 16:34:32 +02:00
"parsePayload": true,
2018-05-16 10:39:12 +02:00
"verbose": false
2018-06-03 21:52:32 +02:00
},
{
"instanceId": "temperature",
"collection": "temperature",
"topics": [ "IoT/espThermometer2/measurement" ],
"encapsulate": true,
"parsePayload": true,
"verbose": false
2018-05-14 15:23:00 +02:00
}
]
}