From 951f513dc95372709f05f04d9c22e4a36938cf75 Mon Sep 17 00:00:00 2001 From: Fiete Ostkamp Date: Wed, 13 Aug 2025 09:30:41 +0200 Subject: [PATCH] Globally align tracing settings - 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 --- app/src/main/resources/application.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/src/main/resources/application.yml b/app/src/main/resources/application.yml index f93d4d6..8a19180 100644 --- a/app/src/main/resources/application.yml +++ b/app/src/main/resources/application.yml @@ -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**} - -- 2.16.6