blob: d3b4f45f1ae577c851a3cf38d474c3badb5046cd [file] [log] [blame]
mark.j.leonard6e4f04a2018-04-26 16:53:12 +01001# Note that the start.sh script sets the following System Properties
2# We provide default values here for testing purposes
3AJSC_HOME=.
4CONFIG_HOME=appconfig-local
5com.att.eelf.logging.path=src/main/resources
6com.att.eelf.logging.file=logback.xml
7logback.configurationFile=${com.att.eelf.logging.path}/${com.att.eelf.logging.file}
8
9server.port=9500
10#server.ssl.key-store=
11#server.ssl.key-store-password=
12#server.ssl.keyStoreType=
13#server.ssl.keyAlias=
14
Fiete Ostkamp0d67f832024-02-28 16:30:00 +010015spring.application.name=model-loader
16
17spring.sleuth.enabled=false
18spring.zipkin.baseUrl=http://jaeger-collector.istio-system:9411
19spring.sleuth.messaging.jms.enabled=false
20spring.sleuth.trace-id128=true
21spring.sleuth.sampler.probability=1.0
22spring.sleuth.propagation.type=w3c,b3
23spring.sleuth.supports-join=false
24spring.sleuth.web.skip-pattern=/aai/util.*
25
Fiete Ostkampb5c15a42024-02-28 14:39:51 +010026server.tomcat.threads.max=200
mark.j.leonard6e4f04a2018-04-26 16:53:12 +010027# The minimum number of threads always kept alive
Fiete Ostkampb5c15a42024-02-28 14:39:51 +010028server.tomcat.threads.min-spare=25
mark.j.leonard6e4f04a2018-04-26 16:53:12 +010029
30# Spring Boot logging
31logging.config=${logback.configurationFile}