a91cb9d88d5bb7f92e1d54c0e6b168b146acbe64
[so.git] / bpmn / mso-infrastructure-bpmn / src / main / resources / application.yaml
1 server: 
2   port: 8080  
3   tomcat:
4     max-threads: 50
5 mso:
6   infra:
7     auditInventory: true
8 spring: 
9   datasource:
10      driver-class-name: org.mariadb.jdbc.Driver 
11      url: jdbc:mariadb://${DB_HOST}:${DB_PORT}/camundabpmn
12      username: ${DB_ADMIN_USERNAME}
13      password: ${DB_ADMIN_PASSWORD}
14   http:
15     multipart:
16       enabled: false
17   jersey:
18     application-path: /sobpmnengine
19 camunda:
20   bpm:
21     application:
22       delete-upon-undeploy: false
23       scan-for-process-definitions: true
24       deploy-changed-only: true
25     job-execution:
26       deployment-aware: true
27 #Actuator
28 management:
29   endpoints:
30     web:
31       base-path: /manage
32       exposure:
33         include: "*"
34   metrics:
35     se-global-registry: false
36     export:
37       prometheus:
38         enabled: true # Whether exporting of metrics to Prometheus is enabled.
39         step: 1m # Step size (i.e. reporting frequency) to use.