-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathapplication.properties
42 lines (29 loc) · 1.13 KB
/
application.properties
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
service.port=8086
login.user=read
login.password=baretillesing
login.admin.user=admin
login.admin.password=configservice
# The AWS region to use, e.g., "eu-west-1"
cloudwatch.region=eu-west-1
# Whether Amazon CloudWatch logging is enabled.
cloudwatch.logging.enabled=false
# The max number of log events to bundle per AWS call. Must not exceed 10,000.
cloudwatch.logging.maxBatchSize=512
# The max number of log requests to buffer internally.
cloudwatch.logging.internalQueueSize=1024
# Whether Amazon CloudWatch metrics publishing is enabled.
cloudwatch.metrics.enabled=false
# The namespace to use for custom CloudWatch metrics.
cloudwatch.metrics.namespace=ConfigService
# How often to publish metrics.
cloudwatch.metrics.intervalSeconds=60
# What kind of persistence to use. "embedded" and "postgres" are valid options.
persistence.type=postgres
# Properties for Postgres if used.
postgres.driver.class.name=org.postgresql.Driver
postgres.url=jdbc:postgresql://localhost:5432/cs
postgres.username=configservice
postgres.password=password
postgres.max.connections=10
postgres.minimum.idle.connections=3
postgres.connection.idleTimeout=30000