-
Notifications
You must be signed in to change notification settings - Fork 12
/
conf.json
61 lines (61 loc) · 1.42 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
56
57
58
59
60
61
{
"name": "myDmux",
"dmuxItems": [
{
"name": "sample_name",
"disabled": false,
"connectionType": "kafka_http",
"connection": {
"dmux": {
"size": 250,
"distributor_type": "Hash",
"batch_size": 1
},
"source": {
"name": "source_name",
"zk_path": "localhost:2181/kafka",
"topic": "sample-topic",
"kafka_version_major": 2,
"force_restart": true,
"read_newest": true
},
"pending_acks": 1000000,
"sink": {
"endpoint": "http://localhost:8888/1.0/api/event",
"timeout": "10s",
"retry_interval": "100ms",
"headers": [
{
"name": "X-Client",
"value": "go-dumx"
},
{
"name": "Content-Type",
"value": "application/json"
}
],
"method": "POST"
},
"offset_monitor": {
"source_sink_monitor_enabled": true,
"producer_consumer_monitor_enabled": true,
"offset_polling_interval": "5s"
}
}
}
],
"metric_port": 9999,
"logging": {
"type": "file",
"config": {
"path": "default.log",
"enable_debug": true,
"rotation": {
"size_in_mb": 256,
"retention_count": 5,
"retention_days": 90,
"compress": true
}
}
}
}