forked from open-falcon/falcon-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
transfer.json
75 lines (75 loc) · 1.6 KB
/
transfer.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
{
"debug": true,
"minStep": 30,
"http": {
"enabled": true,
"listen": "%%TRANSFER_HTTP%%"
},
"rpc": {
"enabled": true,
"listen": "%%TRANSFER_RPC%%"
},
"socket": {
"enabled": true,
"listen": "0.0.0.0:4444",
"timeout": 3600
},
"judge": {
"enabled": true,
"batch": 200,
"connTimeout": 1000,
"callTimeout": 5000,
"maxConns": 32,
"maxIdle": 32,
"replicas": 500,
"cluster": {
"judge-00" : "%%JUDGE_RPC%%"
}
},
"graph": {
"enabled": true,
"batch": 200,
"connTimeout": 1000,
"callTimeout": 5000,
"maxConns": 32,
"maxIdle": 32,
"replicas": 500,
"cluster": {
"graph-00" : "%%GRAPH_RPC%%"
}
},
"tsdb": {
"enabled": false,
"batch": 200,
"connTimeout": 1000,
"callTimeout": 5000,
"maxConns": 32,
"maxIdle": 32,
"retry": 3,
"address": "127.0.0.1:8088"
},
"transfer": {
"enabled": false,
"batch": 200,
"connTimeout": 1000,
"callTimeout": 5000,
"maxConns": 32,
"maxIdle": 32,
"retry": 3,
"cluster": {
"t1": "127.0.0.1:8433"
}
},
"influxdb": {
"enabled": false,
"batch": 200,
"retry": 3,
"maxConns": 32,
"username": "admin",
"password": "123456",
"precision": "s",
"db": "foo",
"address": "http://127.0.0.1:8086",
"timeout": 5000
}
}