diff --git a/config/envoyconfig/tracing.go b/config/envoyconfig/tracing.go index 2284ced78..042108d93 100644 --- a/config/envoyconfig/tracing.go +++ b/config/envoyconfig/tracing.go @@ -33,7 +33,7 @@ func isTracingEnabled(cfg *otelconfig.Config) bool { case "none", "noop", "": return false default: - return cfg.OtelExporterOtlpTracesEndpoint != nil + return cfg.OtelExporterOtlpTracesEndpoint != nil || cfg.OtelExporterOtlpEndpoint != nil } }