Standalone TCA with EELF Logger
[dcaegen2/analytics/tca-gen2.git] / dcae-analytics / dcae-analytics-test / src / main / resources / config / application.yaml
1 # SPRING SETTINGS
2 spring:
3   application:
4     name: "dcae-analytics-tca"
5   main:
6     banner-mode: "off"
7   profiles:
8     active: dev
9   servlet:
10     multipart:
11       # Enable multi part file uploads / download
12       enabled: true
13       # Threshold after which files are written to disk.
14       file-size-threshold: 100KB
15       # Max file size
16       max-file-size: 512MB
17       # Max Request size
18       max-request-size: 600MB
19   data:
20     redis:
21       repositories:
22         enabled: false
23     mongodb:
24       repositories:
25         type: none
26   output:
27     ansi:
28       enabled: always
29
30 # ENDPOINTS
31 management:
32   endpoint:
33     health:
34       show-details: always
35     shutdown:
36       enabled: true
37   endpoints:
38     web:
39       exposure:
40         include: '*'
41   info:
42     git:
43       mode: full
44   health:
45     redis:
46       enabled: false
47
48 # SERVER
49 server:
50   port: 9091
51   compression:
52     # Enable gzip compression of response
53     enabled: true
54     mime-types: application/json,text/plain
55     min-response-size: 4096
56   http2:
57     enabled: true
58
59 # LOGGING LEVEL
60 logging:
61   file: logs/dcae-anlaytics-tca.log
62   level:
63     org:
64       onap: DEBUG