Globally align tracing settings 98/141798/1
authorFiete Ostkamp <Fiete.Ostkamp@telekom.de>
Wed, 13 Aug 2025 07:30:41 +0000 (09:30 +0200)
committerFiete Ostkamp <Fiete.Ostkamp@telekom.de>
Wed, 13 Aug 2025 07:30:41 +0000 (09:30 +0200)
- remove hardcoded http:// prefix from zipkin.tracing.endpoint setting
- this allows using the globally configured tracing.collector.baseUrl from the chart

Issue-ID: OOM-3350
Change-Id: I7f29630e63211f9f7a344d70bb973aa213c7b6f9
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
app/src/main/resources/application.yml

index f93d4d6..8a19180 100644 (file)
@@ -19,7 +19,7 @@ management:
       probability: 1.0 # sample every request
   zipkin:
     tracing:
-      endpoint: http://${COLLECTOR_HOST}:${COLLECTOR_PORT}/api/v2/spans
+      endpoint: ${COLLECTOR_HOST}:${COLLECTOR_PORT}/api/v2/spans
 
 spring:
   application:
@@ -55,7 +55,6 @@ bff:
   keycloak-client-id: ${KEYCLOAK_CLIENT_ID}
   endpoints:
     unauthenticated: /api-docs.html, /api.yaml, /webjars/**, /actuator/**
-    
+
   rbac:
     endpoints-excluded: ${RBAC_EXCLUDED_ENDPOINTS}:-/api-docs.html, /api.yaml, /webjars/**, /actuator/**, /users**, /roles**, /preferences**, /actions**}
-