From 35e760a443c0fe4752e4a2e788f150307af7db0b Mon Sep 17 00:00:00 2001 From: Fiete Ostkamp Date: Sat, 25 May 2024 12:55:26 +0200 Subject: Add tracing to sdc-helm-validator - add tracing support - bump version to 1.3.2 Issue-ID: SDC-4688 Change-Id: Ic4930b8d99b0f05f8efec3f254bd6584363cdf57 Signed-off-by: Fiete Ostkamp --- src/main/resources/application.properties | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/main') diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index f3f8498..722317b 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -1,4 +1,5 @@ app.config.charts-base-path=/charts +spring.application.name=sdc-helm-validator spring.jackson.default-property-inclusion=NON_NULL logging.file.name=/var/log/onap/application.log @@ -10,3 +11,11 @@ logging.logback.rollingpolicy.clean-history-on-start=true springdoc.show-actuator=true springdoc.swagger-ui.path=/docs + +spring.sleuth.enabled=${TRACING_ENABLED:false} +spring.zipkin.baseUrl=${COLLECTOR_URL:http://jaeger-collector.istio-system:9411} +spring.sleuth.messaging.jms.enabled = false +spring.sleuth.trace-id128=true +spring.sleuth.sampler.probability=${TRACING_SAMPLING_PROBABILITY:1.0} +spring.sleuth.propagation.type=w3c, b3 +spring.sleuth.supports-join=false \ No newline at end of file -- cgit 1.2.3-korg