-
Notifications
You must be signed in to change notification settings - Fork 9
/
config_defaults.json
74 lines (74 loc) · 1.6 KB
/
config_defaults.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"app": {
"checkForUpdates": true,
"shutdown": {
"stopGracePeriod": "5m",
"log": {
"enabled": true,
"filePath": "shutdown.log"
}
}
},
"logger": {
"name": "",
"level": "info",
"timeFormat": "rfc3339",
"outputPaths": [
"stdout"
]
},
"inx": {
"address": "localhost:9029",
"maxConnectionAttempts": 30,
"targetNetworkName": ""
},
"mqtt": {
"websocket": {
"enabled": true,
"bindAddress": "localhost:1888",
"advertiseAddress": ""
},
"tcp": {
"enabled": false,
"bindAddress": "localhost:1883",
"tls": {
"enabled": false,
"privateKeyPath": "private_key.pem",
"certificatePath": "certificate.pem"
}
},
"auth": {
"passwordSalt": "0000000000000000000000000000000000000000000000000000000000000000",
"users": null
},
"publicTopics": [
"commitments/*",
"blocks*",
"transactions/*",
"block-metadata/*",
"transaction-metadata/*",
"outputs/*"
],
"protectedTopics": [],
"subscriptions": {
"maxTopicSubscriptionsPerClient": 1000,
"topicsCleanupThresholdCount": 10000,
"topicsCleanupThresholdRatio": 1
},
"maximumClientWritesPending": 8192,
"clientWriteBufferSize": 2048,
"clientReadBufferSize": 2048
},
"profiling": {
"enabled": false,
"bindAddress": "localhost:6060"
},
"prometheus": {
"enabled": false,
"bindAddress": "localhost:9312",
"mqttMetrics": true,
"goMetrics": false,
"processMetrics": false,
"promhttpMetrics": false
}
}