-
Notifications
You must be signed in to change notification settings - Fork 79
/
config.json
68 lines (68 loc) · 1.65 KB
/
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
{
"host": "app",
"port": 4443,
"status_port": 8080,
"log_level": "info",
"json_log_enable": true,
"namespace": "tesla_telemetry",
"reliable_ack_sources": {
"V": "kafka"
},
"kafka": {
"bootstrap.servers": "kafka:9092",
"queue.buffering.max.messages": 1000000,
"queue.buffering.max.ms": 50,
"compression.type": "gzip"
},
"pubsub": {
"gcp_project_id": "test-project-id"
},
"kinesis": {
"override_host": "http://kinesis:4567",
"max_retries": 3,
"streams": {
"V": "test_V",
"connectivity": "test_connectivity"
}
},
"zmq": {
"addr": "tcp://*:5284"
},
"monitoring": {
"prometheus_metrics_port": 9090,
"profiler_port": 4269,
"profiling_path": "/tmp/fleet-telemetry/profile"
},
"rate_limit": {
"enabled": true,
"message_interval_time": 30,
"message_limit": 1000
},
"records": {
"V": [
"kafka",
"kinesis",
"pubsub",
"logger",
"zmq"
],
"connectivity": [
"kafka",
"kinesis",
"pubsub",
"logger",
"zmq"
]
},
"tls": {
"ca_file": "/etc/tesla/certs/server/vehicle_device.CA.cert",
"server_cert": "/etc/tesla/certs/server/vehicle_device.app.cert",
"server_key": "/etc/tesla/certs/server/vehicle_device.app.key"
},
"airbrake": {
"project_id": 1,
"project_key": "test1",
"environment": "integration",
"host": "http://errbit:48088"
}
}