-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
44 lines (44 loc) · 962 Bytes
/
Copy pathconfig.example.json
File metadata and controls
44 lines (44 loc) · 962 Bytes
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
{
"server": {
"port": 3000,
"logging": {
"level": "debug",
"file": "/tmp/emanager.log",
"logger": "bunyan"
}
},
"agenda": {
"db_name": "agenda",
"collection_name": "agendaJobs",
"server": "mongodb://localhost:27017/"
},
"monitoring": {
"type": "mongo",
"db_name": "monitoring",
"server": "mongodb://localhost:27017/"
},
"sfdc": {
"username": "user@example.com",
"password": "passwordToken",
"sandbox": false
},
"polling": {
"config": {
"loaders": {
"flatfile": {
"root": "/data/eventMonitoring/"
}
}
},
"extractors": [
"toJson"
],
"transformers": [
"typeMap"
],
"loaders": [
"mongodb",
"flatfile"
]
}
}