-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.json
More file actions
61 lines (61 loc) · 1.5 KB
/
config.json
File metadata and controls
61 lines (61 loc) · 1.5 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"logFile": "test.log",
"logLevel": "INFO",
"brokers": [
{
"brokerSubs": ["mountpoint_office/mountpoint_on_recv_office/office/+"],
"brokerName": "broker1",
"brokerMount": "mountpoint_home/",
"brokerURI": {
"uriQuery": "",
"uriAuthority": {
"uriPort": ":1883",
"uriRegName": "localhost",
"uriUserInfo": ""
},
"uriScheme": "mqtt:",
"uriFragment": "",
"uriPath": "/mqtt"
},
"brokerFwds": ["home/room/temp"],
"connectType": "MQTTConnection"
},
{
"brokerSubs": ["mountpoint_home/home/#"],
"brokerName": "broker2",
"brokerMount": "mountpoint_office/",
"brokerURI": {
"uriQuery": "",
"uriAuthority": {
"uriPort": ":1884",
"uriRegName": "localhost",
"uriUserInfo": ""
},
"uriScheme": "mqtt:",
"uriFragment": "",
"uriPath": "/mqtt"
},
"brokerFwds": ["office/light"],
"connectType": "MQTTConnection"
},
{
"brokerSubs": ["home/+/temp", "home/#"],
"brokerName": "broker3",
"brokerMount": "",
"brokerURI": {
"uriQuery": "",
"uriAuthority": {
"uriPort": ":19192",
"uriRegName": "localhost",
"uriUserInfo": ""
},
"uriScheme": "tcp:",
"uriFragment": "",
"uriPath": ""
},
"brokerFwds": ["home/ac/temp"],
"connectType": "TCPConnection"
}
],
"logToStdErr": true
}