-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.yml
63 lines (44 loc) · 1.71 KB
/
config.yml
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
# ############################## Error Reporting Service settings ################################
production: true
# The default is suitable for development installs
clusterName: elasticsearch_live
elasticsearchHost: localhost
elasticsearchPort: 9300
# Send email on receipt of a new error report (off by default)
sendEmail: false
# ################################# Dropwizard specific settings ##################################
# Define the HTTP settings
http:
port: 9191
adminPort: 9192
logging:
level: WARN
# Logger-specific levels.
loggers:
# Set specific levels
#"com.sun.jersey.api.client": DEBUG
"com.yammer": INFO # See the banner
"org.multibit.hd": DEBUG
# ...
# Settings for logging to stdout.
console:
# If true, write log statements to stdout.
enabled: true
# Do not display log statements below this threshold to stdout.
threshold: ALL
# Settings for logging to a file.
file:
# If true, write log statements to a file.
enabled: false
# Do not write log statements below this threshold to the file.
threshold: ALL
# The file to which current statements will be logged.
currentLogFilename: /var/log/error-reporting/developer.log
# When the log file rotates, the archived log will be renamed to this and gzipped. The
# %d is replaced with the previous day (yyyy-MM-dd). Custom rolling windows can be created
# by passing a SimpleDateFormat-compatible format as an argument: "%d{yyyy-MM-dd-hh}".
archivedLogFilenamePattern: /var/log/error-reporting/developer-%d.log.gz
# The number of archived files to keep.
archivedFileCount: 5
# The timezone used to format dates. HINT: USE THE DEFAULT, UTC.
timeZone: UTC