Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 1 | server: |
| 2 | port: 8080 |
| 3 | tomcat: |
| 4 | max-threads: 50 |
| 5 | |
| 6 | spring: |
| 7 | datasource: |
| 8 | driver-class-name: org.mariadb.jdbc.Driver |
| 9 | url: jdbc:mariadb://${DB_HOST}:${DB_PORT}/camundabpmn |
| 10 | username: ${DB_USERNAME} |
| 11 | password: ${DB_PASSWORD} |
| 12 | dbcp2: |
| 13 | initial-size: 5 |
| 14 | max-total: 20 |
| 15 | validation-query: select 1 |
| 16 | test-on-borrow: true |
| 17 | http: |
| 18 | multipart: |
| 19 | enabled: false |
| 20 | jersey: |
| 21 | application-path: /sobpmnengine |
| 22 | #Actuator |
| 23 | management: |
| 24 | context-path: /manage |
| 25 | metrics: |
| 26 | se-global-registry: false |
| 27 | export: |
| 28 | prometheus: |
| 29 | enabled: true # Whether exporting of metrics to Prometheus is enabled. |
| 30 | step: 1m # Step size (i.e. reporting frequency) to use. |