From: Fiete Ostkamp Date: Wed, 13 Aug 2025 07:30:41 +0000 (+0200) Subject: Globally align tracing settings X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F98%2F141798%2F1;p=portal-ng%2Fbff.git 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 --- 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**} -