-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
41 lines (38 loc) · 895 Bytes
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"connectors": [
{
"enabled": true,
"id": "Service-Connector-Example",
"provider": "random",
"parser": "passthrough",
"consumers": ["console", "mqtt"]
}
],
"providers": {
"random": {
"enabled": true,
"file": "random.js"
}
},
"parsers": {
"passthrough": {
"file": "passthrough.js"
}
},
"consumers": {
"console": {
"enabled": true,
"file": "console.js"
},
"mqtt": {
"enabled": true,
"file": "mqtt.js",
"mqtt_topic": "service-connector-topic",
"mqtt_url": "mqtt://broker.hivemq.com ",
"mqtt_port": 1883,
"mqtt_username": "",
"mqtt_password": "",
"mqtt_qos": 0
}
}
}