Hello Team,
For our integration test, we want to disable traces and logs
we are using dagger 0.13.0 and we are following old fashioned dagger run using sdk(without modules)
I searched through the dagger code, and I found, if we set this env var OTEL_EXPORTER_OTLP_LOGS_ENDPOINT to empty value(https://github.com/dagger/dagger/blob/7527e4bf607f1206afc64565fefdf78737fcef9a/sdk/go/telemetry/init.go#L125), logs exporter won't intialize(disabled)
But to disable the traces, there should not be any env var prefixed with OTEL_(https://github.com/dagger/dagger/blob/7527e4bf607f1206afc64565fefdf78737fcef9a/sdk/go/telemetry/init.go#L29), then doing so it will disable traces but then we have to remove OTEL_EXPORTER_OTLP_LOGS_ENDPOINT, which will be enabled to check logs exporter(it comes with wierd errors in logs that endpoint is not set), so basically these settings cannot work together becasue one is not allowing other to work properly.
is it by design or any plan to fix this code?
