-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo-stomp-nominatim.config.example
55 lines (55 loc) · 1.36 KB
/
go-stomp-nominatim.config.example
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
{
"Name": "go-stomp-yurijbook3",
"DirWithUUID": ".go-stomp-nominatim/",
"ConnConf": {
"ServerAddr": "localhost:61614",
"ServerUser": "guest",
"ServerPassword": "guest",
"QueueFormat": "/queue/",
"HeartBeatError": 15,
"HeartBeat": 30
},
"DiagnConf": {
"CoeffEMA": 0.1,
"TopicName": "/topic/worker.status",
"TimeOut": 5,
"MachineID": "setName",
"CoeffStatus": 2.0
},
"QueueConf": {
"QueueName": "/queue/nominatimRequest",
"QueuePriorName": "/queue/nominatimPriorRequest",
"ResentFullReq": true
},
"NominatimDB": {
"DBname": "nominatim",
"Host": "localhost",
"User": "geocode",
"Password": "geocode"
},
"Logs": {
"Handlers": [
{
"Type": "stderr",
"Level": "DEBUG"
},
{
"Type": "file",
"Level": "INFO",
"Filename": "info.log"
},
{
"Type": "file",
"Level": "WARN",
"Filename": "error.log"
},
{
"Type": "file",
"Level": "DEBUG",
"Filename": "debug.log"
}
],
"CallerInfo": false,
"Logpath": "logs"
}
}