-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathdev.yml
131 lines (123 loc) · 4.32 KB
/
dev.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
server:
applicationContextPath: ${APPLICATION_CONTEXT_PATH:- /}
adminContextPath: ${ADMIN_CONTEXT_PATH:- /stroomAdmin}
applicationConnectors:
- type: http
port: ${STROOM_APP_PORT:-8080}
useForwardedHeaders: true
adminConnectors:
- type: http
port: ${STROOM_ADMIN_PORT:-8081}
useForwardedHeaders: true
detailedJsonProcessingExceptionMapper: true
requestLog:
appenders:
- type: file
currentLogFilename: logs/access/access.log
threshold: ALL
queueSize: 256
discardingThreshold: 0
archive: true
archivedLogFilenamePattern: logs/access/access-%d{yyyy-MM-dd'T'HH:mm}.log
archivedFileCount: 10
timeZone: UTC
logging:
level: ${STROOM_LOGGING_LEVEL:- ERROR}
loggers:
stroom: INFO
io.dropwizard: ERROR
org.eclipse.jetty: ERROR
org.glassfish: ERROR
org.glassfish.jersey: ERROR
# stroom.app.logging.DefaultLoggingFilter: INFO
# org.glassfish.jersey.logging.LoggingFeature: INFO
# org.glassfish.jersey.server.ServerRuntime.Responder: INFO
# org.glassfish.jersey.server.validation.internal.ValidationExceptionMapper: FINER
org.flywaydb: ERROR
"event-logger":
level: INFO
additive: false
appenders:
- type: file
currentLogFilename: logs/user/user.log
threshold: ALL
queueSize: 256
discardingThreshold: 0
archive: true
archivedLogFilenamePattern: logs/user/user-%d{yyyy-MM-dd'T'HH:mm}.log
archivedFileCount: 10
timeZone: UTC
logFormat: "%msg%n"
# "search_progress_trace":
# level: TRACE
# additive: false
# appenders:
# - type: file
# currentLogFilename: logs/search/search_progress_trace.csv
# threshold: ALL
# queueSize: 250
# discardingThreshold: 0
# archive: false
# archivedLogFilenamePattern: logs/search/search_progress_trace-%d{yyyy-MM-dd'T'HH:mm}.csv
# archivedFileCount: 0
# timeZone: UTC
# logFormat: "%msg%n"
appenders:
- type: console
logFormat: "%highlight(%-5level) %d{\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\",UTC} %yellow(%thread) %cyan(%-30logger{25}) %msg %n"
timeZone: UTC
- type: file
currentLogFilename: logs/app/app.log
threshold: ALL
queueSize: 256
discardingThreshold: 0
archive: true
archivedLogFilenamePattern: logs/app/app-%d{yyyy-MM-dd'T'HH:mm}.log
archivedFileCount: 10
timeZone: UTC
logFormat: "%-6level [%d{\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\",UTC}] [%t] %logger - %X{code} %msg %n"
jerseyClients:
OPEN_ID:
# KeyCloak and Azure AD don't like gzip encoded requests
gzipEnabledForRequests: false
appConfig:
commonDbDetails:
connection:
jdbcDriverUrl: ${STROOM_JDBC_DRIVER_URL:-jdbc:mysql://localhost:3307/stroom?useUnicode=yes&characterEncoding=UTF-8}
jdbcDriverUsername: ${STROOM_JDBC_DRIVER_USERNAME:-stroomuser}
jdbcDriverPassword: ${STROOM_JDBC_DRIVER_PASSWORD:-stroompassword1}
contentPackImport:
enabled: true
job:
enabled: true
enableJobsOnBootstrap: true
executionInterval: "10s"
node:
name: node1a
path:
# Versioned dirs for dev to allow running multiple stroom instances
home: "${STROOM_HOME:-~/.stroom/v7/node1a}"
temp: "${STROOM_TEMP:-/tmp/stroom/v7/node1a}"
# Comment out the publicUri block if you are not running with nginx
publicUri:
hostname: ${API_GATEWAY_HOST:-localhost}
port: ${API_GATEWAY_PORT:-}
security:
identity:
passwordPolicy:
minimumPasswordStrength: 1
minimumPasswordLength: 1
authentication:
openId:
identityProviderType: ${IDP_TYPE:-TEST_CREDENTIALS}
serviceDiscovery:
zookeeperUrl: ${STROOM_SERVICE_DISCOVERY_ZOOKEEPER_URL:-localhost:2181}
servicesHostNameOrIpAddress: ${STROOM_ADVERTISED_URL:-localhost}
statistics:
hbase:
# UUID of the Kafka Config Doc that is created by Setup Sample Data
# Debatable if the doc should be added to a content pack or not
kafkaConfigUuid: 7cbf9153-869c-43bb-a316-1c652673e680
internal:
enabledStoreTypes: ${STROOM_ENABLED_STAT_STORE_TYPES:-[ "StatisticStore" ]}
# enabledStoreTypes: ${STROOM_ENABLED_STAT_STORE_TYPES:-[ "StatisticStore", "StroomStatsStore" ]}