-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapex_config.json
114 lines (114 loc) · 2.44 KB
/
apex_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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"logLevel": "INFO",
"connections": [
{
"type": "Child",
"port": 5000,
"format": "XML",
"icd_version": "VERSION6"
},
{
"type": "Child",
"port": 5010,
"format": "PROTO",
"icd_version": "BSI Flex 335 v1.0"
},
{
"type": "Child",
"port": 5020,
"format": "PROTO",
"icd_version": "BSI Flex 335 v2.0"
},
{
"type": "Peer",
"port": 5001,
"format": "PROTO",
"icd_version": "BSI Flex 335 v1.0"
},
{
"type": "Parent",
"port": 5002,
"format": "PROTO",
"icd_version": "BSI Flex 335 v1.0"
},
{
"type": "Recorder",
"port": 5003,
"format": "PROTO",
"icd_version": "BSI Flex 335 v1.0"
},
{
"type": "Parent",
"port": 5004,
"forwardAll": true,
"format": "PROTO"
},
{
"type": "Parent",
"host": "127.0.0.1",
"port": 10000,
"outbound": true,
"format": "PROTO",
"icd_version": "BSI Flex 335 v1.0"
}
],
"elasticConfig": {
"enabled": false,
"host": "localhost",
"port": 9200,
"useSsl": true,
"certLocation": "C:\\elasticsearch-8.11.1\\config\\certs\\http_ca.crt",
"user": "elastic",
"password": "password"
},
"apiConfig": {
"host": "127.0.0.1",
"port": 8080
},
"enableTimeSyncAdjustment": false,
"messageMaxSizeKb": 1024,
"detectionConfidenceFiltering": {
"enable": false,
"threshold": 0.5,
"storeInDatabase": true
},
"middlewareId": "5913c0f4-9f89-4c01-ab90-939099797c4f",
"enableMessageConversion": true,
"autoAssignSensorIDInRegistration": {
"enable": true,
"startingID": 1000001,
"staticNodeIds": {
"3d1ffd1b-cc01-4c26-a7e8-bf4da3d393b8": 0
}
},
"allowPeerRegistration": true,
"sendRegistrationAck": true,
"rollover": {
"enable": true,
"unit": "days",
"value": 1
},
"validationOptions": {
"validationTypes": [
"mandatory_fields_present",
"mandatory_oneof_present",
"mandatory_repeated_present",
"no_unknown_fields",
"no_unknown_enum_values",
"id_format_valid",
"message_timestamp_reasonable",
"detection_timestamp_reasonable",
"supported_icd_version"
],
"strictIdFormat": true,
"messageTimestampRange": [
-0.9,
0.1
],
"detectionMinimumGap": 0.08,
"supportedIcdVersions": [
"BSI Flex 335 v1.0",
"BSI Flex 335 v2.0"
]
}
}