...
Change the flag otel.sdk.disabled to false in the application.yaml (New Delhioslo)
Code Block | ||
---|---|---|
| ||
otel: sdk: disabled: ${ONAP_SDK_DISABLED:false} south: ${ONAP_TRACING_SOUTHBOUND:true} instrumentation: spring-webflux: enabled: ${ONAP_TRACING_NORTHBOUND:true} |
...
Code Block | ||
---|---|---|
| ||
services: a1_policy_management: .... environment: - ONAP_SDK_DISABLED=false - ONAP_TRACING_SOUTHBOUND=true - ONAP_TRACING_NORTHBOUND=true |
For more information visit the
...