Hi team, we saw some logs has application name with or without db name. using OpenTelemetry.Trace; // ... builder.Services.AddOpenTelemetry() .WithTracing(tracerProviderBuilder => tracerProviderBuilder .AddSource(MySource.Name) .AddSqlClientInstrumentation(options => { // Optional: Include the SQL statement in the span attributes options.SetDbStatementForText = true; }) what's the possible cause and fix for this ?