diff options
Diffstat (limited to 'so-etsi-sol005-adapter-application/src/main/resources')
3 files changed, 37 insertions, 0 deletions
diff --git a/so-etsi-sol005-adapter-application/src/main/resources/application-aaf.yaml b/so-etsi-sol005-adapter-application/src/main/resources/application-aaf.yaml new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/so-etsi-sol005-adapter-application/src/main/resources/application-aaf.yaml diff --git a/so-etsi-sol005-adapter-application/src/main/resources/application-basic.yaml b/so-etsi-sol005-adapter-application/src/main/resources/application-basic.yaml new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/so-etsi-sol005-adapter-application/src/main/resources/application-basic.yaml diff --git a/so-etsi-sol005-adapter-application/src/main/resources/application.yaml b/so-etsi-sol005-adapter-application/src/main/resources/application.yaml new file mode 100644 index 0000000..4a500b3 --- /dev/null +++ b/so-etsi-sol005-adapter-application/src/main/resources/application.yaml @@ -0,0 +1,37 @@ + +server: + port: 8080 + tomcat: + max-threads: 50 + +mso: + site-name: unknown + logPath: ./logs/vfc/ + +spring: + datasource: + jdbc-url: jdbc:mariadb://${DB_HOST}:${DB_PORT}/requestdb + username: ${DB_USERNAME} + password: ${DB_PASSWORD} + driver-class-name: org.mariadb.jdbc.Driver + jpa: + show-sql: false + hibernate: + dialect: org.hibernate.dialect.MySQL5Dialect + ddl-auto: validate + naming-strategy: org.hibernate.cfg.ImprovedNamingStrategy + enable-lazy-load-no-trans: true + +#Actuator +management: + endpoints: + web: + base-path: /manage + exposure: + include: "*" + metrics: + se-global-registry: false + export: + prometheus: + enabled: true # Whether exporting of metrics to Prometheus is enabled. + step: 1m # Step size (i.e. reporting frequency) to use.
\ No newline at end of file |