-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.json
55 lines (55 loc) · 1.29 KB
/
conf.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
{
"batch_size": 165,
"local": {
"host": "localhost",
"port": 8086,
"database": "edgeDB"
},
"cloud": {
"host": "test.server.influxdb.com",
"port": 8086,
"secure": true,
"username": "username",
"password": "password",
"database": "finalDB"
},
"gps": {
"fields": ["lat", "lon", "sog", "cog"],
"measurement": "gps",
"tags": {
"type": "RMC"
},
"limit": 5
},
"ciss": {
"fields": ["accX", "accY", "accZ", "gyroX", "gyroY", "gyroZ", "magX", "magY", "magZ"],
"measurement": "ciss",
"tags": {
"node": "CISS1"
},
"limit": 50
},
"imu": {
"fields": ["yaw", "pitch", "roll", "laX", "laY", "laZ", "gX", "gY", "gZ"],
"measurement": "imu",
"tags": {
"node":"BNO055"
},
"limit": 50
},
"button": {
"fields": ["pressed"],
"measurement": "button",
"limit": 5
},
"EnvironmentalParameters": {
"fields": ["Atmospheric Pressure", "Temperature"],
"measurement": "EnvironmentalParameters",
"limit": 5
},
"Rudder": {
"fields": ["Position"],
"measurement": "Rudder",
"limit": 50
}
}