diff options
author | Andreas Geissler <andreas-geissler@telekom.de> | 2024-01-15 14:12:24 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2024-01-15 14:12:24 +0000 |
commit | 13c91a3f135f4cd622c0f3b4019e284cc88b0ebf (patch) | |
tree | 4c9712bae18855c34535e42a0ab74126d843ff7c | |
parent | 241bd1439174d1008c8bbcbd775b2395b45d68ed (diff) | |
parent | 71bc5d3d23f36acd27c995dfccf01918c17c71a8 (diff) |
Merge "[CDS] BP Request tracing"
-rwxr-xr-x | kubernetes/cds/components/cds-blueprints-processor/resources/config/application.properties | 11 | ||||
-rwxr-xr-x | kubernetes/cds/components/cds-blueprints-processor/values.yaml | 8 |
2 files changed, 19 insertions, 0 deletions
diff --git a/kubernetes/cds/components/cds-blueprints-processor/resources/config/application.properties b/kubernetes/cds/components/cds-blueprints-processor/resources/config/application.properties index 7351b1f193..b99bae7197 100755 --- a/kubernetes/cds/components/cds-blueprints-processor/resources/config/application.properties +++ b/kubernetes/cds/components/cds-blueprints-processor/resources/config/application.properties @@ -195,3 +195,14 @@ blueprintprocessor.k8s.plugin.url=http://multicloud-k8s:9015/ #Workflow audit store configuration blueprintsprocessor.workflow.self-service-api.audit.storeEnable={{ .Values.workflow.storeEnabled }} + +#Tracing +spring.zipkin.baseUrl={{ .Values.tracing.collector.baseUrl }} +spring.zipkin.checkTimeout=5000 +spring.zipkin.service.name={{ include "common.name" . }} +spring.sleuth.messaging.jms.enabled=false +spring.sleuth.trace-id128=true +spring.sleuth.sampler.probability={{ .Values.tracing.sampling.probability }} +spring.sleuth.propagation.type=w3c, b3 +spring.sleuth.supports-join=false +spring.sleuth.web.skip-pattern={{ join "," .Values.tracing.ignorePatterns }} diff --git a/kubernetes/cds/components/cds-blueprints-processor/values.yaml b/kubernetes/cds/components/cds-blueprints-processor/values.yaml index a082c2c8ca..3244748176 100755 --- a/kubernetes/cds/components/cds-blueprints-processor/values.yaml +++ b/kubernetes/cds/components/cds-blueprints-processor/values.yaml @@ -231,3 +231,11 @@ serviceAccount: # workflow store flag workflow: storeEnabled: false + +tracing: + collector: + baseUrl: http://jaeger-collector.istio-system:9411 + sampling: + probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%) + ignorePatterns: + - .*/execution-service/health-check |