\r
# enable this if you have deployed Jaeger alongside ONAP\r
tracing:\r
- enabled: true\r
+ enabled: false\r
collector:\r
- baseUrl: http://jaeger-collector.istio-system:9411\r
+ baseUrl: http://jaeger-collector.istio-config\r
+ port:\r
+ zipkin: 9411\r
+ otlpGrpc: 4317\r
+ grpc: 14250\r
sampling:\r
probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)\r
\r
tracing:
enabled: {{ .Values.global.tracing.enabled | default true }}
propagation:
- produce: [{{ .Values.global.tracing.propagator.produce.type }}]
+ produce: [{{ .Values.tracing.propagator.produce.type }}]
sampling:
probability: {{ .Values.global.tracing.sampling.probability | default "1.0" }}
otel:
exporter:
otlp:
traces:
- endpoint: {{ .Values.global.tracing.collector.baseUrl | default "http://jaeger:4317" }}
- protocol: {{ .Values.global.tracing.collector.protocol | default "grpc" }}
+ endpoint: {{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.otlpGrpc }}
+ protocol: {{ .Values.tracing.collector.protocol | default "grpc" }}
logs:
exporter: none
metrics:
spring-webflux:
enabled: false
{{- else }}
- disabled: {{ .Values.global.tracing.sdk.disabled | default false }}
- south: {{ .Values.global.tracing.sdk.south | default true }}
+ disabled: {{ .Values.tracing.sdk.disabled | default false }}
+ south: {{ .Values.tracing.sdk.south | default true }}
instrumentation:
spring-webflux:
- enabled: {{ .Values.global.tracing.north.enabled | default true }}
+ enabled: {{ .Values.tracing.north.enabled | default true }}
{{- end }}
tracing:
sampler:
jaeger_remote:
- endpoint: {{ .Values.global.tracing.sampling.baseUrl | default "http://jaeger:14250" }}
+ endpoint: {{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.grpc }}
server:
# Configuration of the HTTP/REST server. The parameters are defined and handeled by the springboot framework.
# See springboot documentation.
value: {{ .Values.app.logging.config | quote }}
{{- if .Values.global.tracing.enabled }}
- name: ONAP_PROPAGATOR_PRODUCE
- value: "[{{ .Values.global.tracing.propagator.produce.type }}]"
+ value: "[{{ .Values.tracing.propagator.produce.type }}]"
- name: ONAP_OTEL_EXPORTER_ENDPOINT
- value: {{ .Values.global.tracing.collector.baseUrl | quote }}
+ value: "{{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.otlpGrpc }}"
- name: ONAP_OTEL_EXPORTER_PROTOCOL
- value: {{ .Values.global.tracing.collector.protocol | quote }}
+ value: {{ .Values.tracing.collector.protocol | quote }}
- name: ONAP_SDK_DISABLED
- value: {{ .Values.global.tracing.sdk.disabled | quote }}
+ value: {{ .Values.tracing.sdk.disabled | quote }}
- name: ONAP_TRACING_SOUTHBOUND
- value: {{ .Values.global.tracing.sdk.south | quote }}
+ value: {{ .Values.tracing.sdk.south | quote }}
- name: ONAP_TRACING_NORTHBOUND
- value: {{ .Values.global.tracing.north.enabled | quote }}
+ value: {{ .Values.tracing.north.enabled | quote }}
- name: ONAP_OTEL_SAMPLER_JAEGER_REMOTE_ENDPOINT
- value: {{ .Values.global.tracing.sampling.baseUrl | quote }}
+ value: "{{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.grpc }}"
{{- end }}
volumeMounts:
- mountPath: /config-input
value: {{ .Values.app.logging.config | quote }}
{{- if .Values.global.tracing.enabled }}
- name: ONAP_PROPAGATOR_PRODUCE
- value: "[{{ .Values.global.tracing.propagator.produce.type }}]"
+ value: "[{{ .Values.tracing.propagator.produce.type }}]"
- name: ONAP_OTEL_EXPORTER_ENDPOINT
- value: {{ .Values.global.tracing.collector.baseUrl | quote }}
+ value: {{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.otlpGrpc }}
- name: ONAP_OTEL_EXPORTER_PROTOCOL
- value: {{ .Values.global.tracing.collector.protocol | quote }}
+ value: {{ .Values.tracing.collector.protocol | quote }}
- name: ONAP_SDK_DISABLED
- value: {{ .Values.global.tracing.sdk.disabled | quote }}
+ value: {{ .Values.tracing.sdk.disabled | quote }}
- name: ONAP_TRACING_SOUTHBOUND
- value: {{ .Values.global.tracing.sdk.south | quote }}
+ value: {{ .Values.tracing.sdk.south | quote }}
- name: ONAP_TRACING_NORTHBOUND
- value: {{ .Values.global.tracing.north.enabled | quote }}
+ value: {{ .Values.tracing.north.enabled | quote }}
- name: ONAP_OTEL_SAMPLER_JAEGER_REMOTE_ENDPOINT
value: {{ .Values.global.tracing.sampling.baseUrl | quote }}
{{- end }}
persistence: {}
tracing:
enabled: false
- propagator:
- produce:
- # This can have several options included in a comma separated list W3C,B3,B3_MULTI
- type: W3C
collector:
- baseUrl: "http://jaeger:4317"
- protocol: "grpc"
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
sampling:
- baseUrl: "http://jaeger:14250"
- probability: "1.0"
- sdk:
- south: true
- disabled: false
- north:
- enabled: true
+ probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
+
secrets:
- uid: controller-secret
reactiveEntryExitFilterEnabled: true
reactiveEntryExitFilterExcludePaths: ""
-
+tracing:
+ propagator:
+ produce:
+ # This can have several options included in a comma separated list W3C,B3,B3_MULTI
+ type: W3C
+ collector:
+ protocol: "grpc"
+ sdk:
+ south: true
+ disabled: false
+ north:
+ enabled: true
spring.application.name=aai-babel
spring.sleuth.enabled={{ .Values.global.tracing.enabled }}
-spring.zipkin.baseUrl={{ .Values.global.tracing.collector.baseUrl }}
+spring.zipkin.baseUrl={{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.zipkin }}
spring.sleuth.messaging.jms.enabled = false
spring.sleuth.trace-id128=true
spring.sleuth.sampler.probability={{ .Values.global.tracing.sampling.probability }}
tracing:
enabled: false
collector:
- baseUrl: http://jaeger-collector.istio-config:9411
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
sampling:
- probability: 1.0
+ probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
#################################################################
# Application configuration defaults.
spring.application.name=aai-model-loader
spring.sleuth.enabled={{ .Values.global.tracing.enabled }}
-spring.zipkin.baseUrl={{ .Values.global.tracing.collector.baseUrl }}
+spring.zipkin.baseUrl={{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.zipkin }}
spring.sleuth.messaging.jms.enabled=false
spring.sleuth.trace-id128=true
spring.sleuth.sampler.probability={{ .Values.global.tracing.sampling.probability }}
tracing:
enabled: false
collector:
- baseUrl: http://jaeger-collector.istio-config:9411
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
sampling:
probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
auth:
management.tracing.enabled={{ .Values.global.tracing.enabled }}
management.tracing.sampling.probability={{ .Values.global.tracing.sampling.probability }}
management.tracing.propagation.type=w3c, b3
-management.zipkin.tracing.endpoint={{ .Values.global.tracing.collector.baseUrl }}
+management.zipkin.tracing.endpoint={{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.zipkin }}
spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration,org.keycloak.adapters.springboot.KeycloakAutoConfiguration,org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration,org.springframework.boot.actuate.autoconfigure.security.servlet.ManagementWebSecurityAutoConfiguration
tracing:
enabled: false
collector:
- baseUrl: http://jaeger-collector.istio-config:9411
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
sampling:
- probability: 1.0
+ probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
+
# Specifies a list of jobs to be run
jobs:
spring.main.allow-bean-definition-overriding=true
spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration
spring.sleuth.enabled={{ .Values.global.tracing.enabled }}
-spring.zipkin.baseUrl={{ .Values.global.tracing.collector.baseUrl }}
+spring.zipkin.baseUrl={{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.zipkin }}
spring.sleuth.trace-id128=true
spring.sleuth.sampler.probability={{ .Values.global.tracing.sampling.probability }}
spring.sleuth.propagation.type=w3c, b3
tracing:
enabled: false
collector:
- baseUrl: http://jaeger-collector.istio-config:9411
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
sampling:
probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
+
# Specifies if basic authorization is enabled
auth:
enabled: true
management.tracing.enabled={{ .Values.global.tracing.enabled }}
management.tracing.sampling.probability={{ .Values.global.tracing.sampling.probability }}
management.tracing.propagation.type=w3c, b3
-management.zipkin.tracing.endpoint={{ .Values.global.tracing.collector.baseUrl }}
+management.zipkin.tracing.endpoint={{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.zipkin }}
#The max number of active threads in this pool
server.tomcat.max-threads=200
tracing:
enabled: false
collector:
- baseUrl: http://jaeger-collector.istio-config:9411
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
sampling:
probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
tracing:
enabled: false
collector:
- baseUrl: http://jaeger-collector.istio-config:9411
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
sampling:
probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
#Tracing
spring.sleuth.enabled={{ .Values.global.tracing.enabled }}
-spring.zipkin.baseUrl={{ .Values.global.tracing.collector.baseUrl }}
+spring.zipkin.baseUrl={{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.zipkin }}
spring.zipkin.checkTimeout=5000
spring.zipkin.service.name={{ include "common.name" . }}
spring.sleuth.messaging.jms.enabled=false
tracing:
enabled: false
collector:
- baseUrl: http://jaeger-collector.istio-config:9411
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
sampling:
probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
# This concerns CDS/AAI communication through HTTP when TLS is not being needed
tracing:
enabled: false
collector:
- baseUrl: http://jaeger-collector.istio-config:9411
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
sampling:
probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
apiVersion: v2
description: ONAP Configuration Persistance Service (CPS)
name: cps
-version: 13.0.1
+version: 13.0.2
dependencies:
- name: common
apiVersion: v2
description: ONAP Configuration Persistance Service (CPS) - Core
name: cps-core
-version: 13.0.1
+version: 13.0.2
dependencies:
- name: common
repository: '@local'
- name: serviceAccount
version: ~13.x-0
- repository: '@local'
\ No newline at end of file
+ repository: '@local'
*/}}
spring:
+ application:
+ name: cps-core
datasource:
{{- if .Values.global.postgres.localCluster }}
url: jdbc:postgresql://{{ .Values.postgres.service.name2 }}:{{ .Values.postgres.service.externalPort2 }}/{{ .Values.postgres.config.pgDatabase }}
tracing:
propagation:
produce: {{ .Values.management.tracing.propagation.produce }}
+ sampling:
+ probability: {{ .Values.global.tracing.sampling.probability }}
logging:
level:
{{ toYaml .Values.config.additional | nindent 2 }}
{{- end }}
-# cps tracing
-{{- if .Values.tracing }}
- {{ toYaml .Values.tracing | nindent 2 }}
-{{- end }}
+cps:
+ tracing:
+ enabled: {{ .Values.global.tracing.enabled }}
+ sampler:
+ jaeger_remote:
+ endpoint: {{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.grpc }}
+ exporter:
+ endpoint: {{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.otlpGrpc }}
+ protocol: {{ .Values.tracing.exporter.protocol }}
+ excluded-observation-names: {{ .Values.tracing.excludedObservationNames }}
# Custom Hazelcast config.
hazelcast:
exporter:
otlp:
traces:
- protocol: {{ .Values.otel.config.otlp.traces.protocol }}
+ protocol: {{ .Values.tracing.otlp.traces.protocol }}
# Last empty line is required otherwise the last property will be missing from application.yml file in the pod.
externalPort3: 5432
container:
name: postgres
+ tracing:
+ collector:
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
+ sampling:
+ probability: 1.0
image: onap/cps-and-ncmp:3.5.4
produce: [W3C]
tracing:
- cps:
- tracing:
- sampler:
- jaeger_remote:
- endpoint: http://onap-otel-collector:14250
- exporter:
- endpoint: http://onap-otel-collector:4317
- protocol: grpc
- enabled: false
- excluded-observation-names: tasks.scheduled.execution
+ exporter:
+ protocol: grpc
+ excludedObservationNames: tasks.scheduled.execution
+ otlp:
+ traces:
+ protocol: grpc
#################################################################
# Postgres overriding defaults in the postgres
kubernetesDiscovery: true
kubernetesServiceName: cps-core-headless
clusterName: cps-and-ncmp-common-cache-cluster
-
-otel:
- config:
- otlp:
- traces:
- protocol: grpc
kafkaBootstrap: strimzi-kafka-bootstrap
cpsKafkaUser: cps-kafka-user
+ tracing:
+ collector:
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
+ sampling:
+ probability: 1.0
config:
coreUserName: cpsuser
tracing:
enabled: false
collector:
- baseUrl: http://jaeger-collector.istio-config:9411
+ baseUrl: http://jaeger-collector.istio-config
+ # ports that are exposed by the jaeger-collector service
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
sampling:
probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
name: {{ include "common.fullname" . }}-configmap
namespace: {{ include "common.namespace" . }}
data:
+ TRACING_ENABLED: {{ .Values.global.tracing.enabled | quote }}
+ COLLECTOR_HOST: {{ .Values.global.tracing.collector.baseUrl }}
+ COLLECTOR_PORT: {{ .Values.global.tracing.collector.port.zipkin | quote }}
{{- range $key, $val := .Values.env }}
{{ $key }}: {{ $val | quote }}
{{- end -}}
+++ /dev/null
-apiVersion: v1
-kind: Pod
-metadata:
- name: {{ include "common.fullname" . }}-test-connection
- namespace: {{ include "common.namespace" . }}
- labels:
- app: {{ include "common.name" . }}
- chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
- release: {{ include "common.release" . }}
- heritage: {{ .Release.Service }}
- annotations:
- "helm.sh/hook": test
-spec:
- containers:
- - name: wget
- image: busybox
- command: ['wget']
- args: ['{{ include "common.fullname" . }}:{{ .Values.service.port }}']
- restartPolicy: Never
env:
KEYCLOAK_URL: http://keycloak-http.keycloak
KEYCLOAK_REALM: onap
- COLLECTOR_HOST: http://jaeger-collector.istio-config
- COLLECTOR_PORT: 9411
+ tracing:
+ enabled: false
+ collector:
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
+ sampling:
+ probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
## Default values for portal-ng-bff.
## This is a YAML-formatted file.
env:
HISTORY_URL: http://portal-ng-history:9002
PREFERENCES_URL: http://portal-ng-preferences:9001
- TRACING_ENABLED: true
RBAC_EXCLUDED_ENDPOINTS: ''
secretEnv:
name: {{ include "common.fullname" . }}-configmap
namespace: {{ include "common.namespace" . }}
data:
- {{- range $key, $val := .Values.env }}
- {{ $key }}: {{ $val | quote }}
- {{- end -}}
+ TRACING_ENABLED: {{ .Values.global.tracing.enabled | quote }}
+ COLLECTOR_HOST: {{ .Values.global.tracing.collector.baseUrl }}
+ COLLECTOR_PORT: {{ .Values.global.tracing.collector.port.zipkin | quote }}
{{- range $key, $val := .Values.global.env }}
{{ $key }}: {{ $val | quote }}
{{- end -}}
env:
KEYCLOAK_URL: http://keycloak-http.keycloak
KEYCLOAK_REALM: onap
- COLLECTOR_HOST: http://jaeger-collector.istio-config
- COLLECTOR_PORT: 9411
+ tracing:
+ enabled: false
+ collector:
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
+ sampling:
+ probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
#Service Names of the postgres db to connect to.
postgres:
localCluster: false
## Number of consecutive failures allowed before marking probe as failed.
failureThreshold: 4
-env:
- TRACING_ENABLED: true
-
#################################################################
# Postgres overriding defaults in the postgres
#################################################################
name: {{ include "common.fullname" . }}-configmap
namespace: {{ include "common.namespace" . }}
data:
- {{- range $key, $val := .Values.env }}
- {{ $key }}: {{ $val | quote }}
- {{- end -}}
+ TRACING_ENABLED: {{ .Values.global.tracing.enabled | quote }}
+ COLLECTOR_HOST: {{ .Values.global.tracing.collector.baseUrl }}
+ COLLECTOR_PORT: {{ .Values.global.tracing.collector.port.zipkin | quote }}
{{- range $key, $val := .Values.global.env }}
{{ $key }}: {{ $val | quote }}
{{- end -}}
+++ /dev/null
-apiVersion: v1
-kind: Pod
-metadata:
- name: {{ include "common.fullname" . }}-test-connection
- namespace: {{ include "common.namespace" . }}
- labels:
- app: {{ include "common.name" . }}
- chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
- release: {{ include "common.release" . }}
- heritage: {{ .Release.Service }}
- annotations:
- "helm.sh/hook": test
-spec:
- containers:
- - name: wget
- image: busybox
- command: ['wget']
- args: ['{{ include "common.fullname" . }}:{{ .Values.service.port }}']
- restartPolicy: Never
env:
KEYCLOAK_URL: http://keycloak-http.keycloak
KEYCLOAK_REALM: onap
- COLLECTOR_HOST: http://jaeger-collector.istio-config
- COLLECTOR_PORT: 9411
+ tracing:
+ enabled: false
+ collector:
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
+ sampling:
+ probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
#Service Names of the postgres db to connect to.
postgres:
localCluster: false
## Number of consecutive failures allowed before marking probe as failed.
failureThreshold: 4
-env:
- TRACING_ENABLED: true
-
#################################################################
# Postgres overriding defaults in the postgres
#################################################################
- name: TRACING_ENABLED
value: {{ .Values.global.tracing.enabled | quote }}
- name: COLLECTOR_URL
- value: {{ .Values.global.tracing.collector.baseUrl }}
+ value: {{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.zipkin }}
- name: TRACING_SAMPLING_PROBABILITY
value: {{ .Values.global.tracing.sampling.probability | quote }}
livenessProbe:
tracing:
enabled: false
collector:
- baseUrl: http://jaeger-collector.istio-config:9411
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
sampling:
probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
- name: TRACING_ENABLED
value: "{{ .Values.global.tracing.enabled }}"
- name: TRACING_COLLECTOR_BASEURL
- value: "{{ .Values.global.tracing.collector.baseUrl }}"
+ value: "{{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.zipkin }}"
- name: TRACING_SAMPLING_PROBABILITY
value: "{{ .Values.config.tracing.samplingProbability }}"
- name: TRACING_SKIP_PATTERN
tracing:
enabled: false
collector:
- baseUrl: http://jaeger-collector.istio-config:9411
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
+ sampling:
+ probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
#################################################################
# Application configuration defaults.
tracing:
enabled: false
collector:
- baseUrl: http://jaeger-collector.istio-config:9411
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
sampling:
probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
web:
skip-pattern: /actuator/health/*
zipkin:
- base-url: {{ .Values.global.tracing.collector.baseUrl }}
+ base-url: {{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.zipkin }}
so:
vnfm:
adapter:
tracing:
enabled: false
collector:
- baseUrl: http://jaeger-collector.istio-config:9411
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
sampling:
probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
so:
scheduled:
skip-pattern: .*({{ join "|" .Values.tracing.scheduled.skipClasses }})
zipkin:
- base-url: {{ .Values.global.tracing.collector.baseUrl }}
+ base-url: {{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.zipkin }}
#Actuator
management:
context-path: /manage
tracing:
enabled: false
collector:
- baseUrl: http://jaeger-collector.istio-config:9411
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
sampling:
probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
so:
web:
skip-pattern: {{ join "," .Values.tracing.ignorePatterns }}
zipkin:
- base-url: {{ .Values.global.tracing.collector.baseUrl }}
+ base-url: {{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.zipkin }}
server:
{{- if include "common.onServiceMesh" . }}
forward-headers-strategy: none
tracing:
enabled: false
collector:
- baseUrl: http://jaeger-collector.istio-config:9411
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
sampling:
probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
scheduled:
skip-pattern: .*({{ join "|" .Values.tracing.scheduled.skipClasses }})
zipkin:
- base-url: {{ .Values.global.tracing.collector.baseUrl }}
+ base-url: {{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.zipkin }}
org:
onap:
so:
tracing:
enabled: false
collector:
- baseUrl: http://jaeger-collector.istio-config:9411
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
sampling:
probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
scheduled:
skip-pattern: .*({{ join "|" .Values.tracing.scheduled.skipClasses }})
zipkin:
- base-url: {{ .Values.global.tracing.collector.baseUrl }}
+ base-url: {{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.zipkin }}
#Actuator
management:
context-path: /manage
tracing:
enabled: false
collector:
- baseUrl: http://jaeger-collector.istio-config:9411
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
sampling:
probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
so:
scheduled:
skip-pattern: .*({{ join "|" .Values.tracing.scheduled.skipClasses }})
zipkin:
- base-url: {{ .Values.global.tracing.collector.baseUrl }}
+ base-url: {{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.zipkin }}
request:
datasource:
hikari:
tracing:
enabled: false
collector:
- baseUrl: http://jaeger-collector.istio-config:9411
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
sampling:
probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
web:
skip-pattern: /actuator/health/*
zipkin:
- base-url: {{ .Values.global.tracing.collector.baseUrl }}
+ base-url: {{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.zipkin }}
tracing:
enabled: false
collector:
- baseUrl: http://jaeger-collector.istio-config:9411
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
sampling:
probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
scheduled:
skip-pattern: .*({{ join "|" .Values.tracing.scheduled.skipClasses }})
zipkin:
- base-url: {{ .Values.global.tracing.collector.baseUrl }}
+ base-url: {{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.zipkin }}
request:
datasource:
hikari:
tracing:
enabled: false
collector:
- baseUrl: http://jaeger-collector.istio-config:9411
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
sampling:
probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
so:
management.endpoints.web.exposure.include=*
management.tracing.enabled={{ default .Values.global.tracing.enabled .Values.tracing.enabled }}
-management.tracing.sampling.probability={{ default .Values.global.tracing.sampling.probability .Values.tracing.collector.baseUrl }}
-management.zipkin.tracing.endpoint={{ default .Values.global.tracing.collector.baseUrl .Values.tracing.collector.baseUrl }}/api/v2/spans
+management.tracing.sampling.probability={{ default .Values.global.tracing.sampling.probability .Values.tracing.sampling.probability }}
+management.zipkin.tracing.endpoint={{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.zipkin }}/api/v2/spans
uui-server.client.aai.baseUrl={{ .Values.uuiServer.client.aai.baseUrl }}
uui-server.client.aai.apiVersion={{ .Values.uuiServer.client.aai.apiVersion }}
global:
tracing:
collector:
- baseUrl: http://jaeger-collector.istio-config:9411
+ baseUrl: http://jaeger-collector.istio-config
+ port:
+ zipkin: 9411
+ otlpGrpc: 4317
+ grpc: 14250
sampling:
probability: 1.0
## Use this to override the global defaults
tracing:
# enabled: false
- collector: {}
-# baseUrl: http://jaeger-collector.istio-config:9411
sampling: {}
# probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)