Alex Gavrilescu

Results 30 comments of Alex Gavrilescu

Markdown works! It might not be as good as other formats (xml etc.) but it's the best format that both humans and AI agents can easily collaborate with. I think...

Hi @roji we are trying to integrate [Datadog pg_tracing](https://github.com/DataDog/pg_tracing) in our services. Since we are using EF, we can use interceptors to add the trace info as a comment ahead...

Yeah but I would like to do it from configuration as I donโ€™t always have access to npgsql directly. something like otel.addnpgsql(options=> { options.addW3cTracingContext = true; }

Hi @roji I checked both this PR and #5928 but I couldn't find a way to enrich all commands with W3C trace context. What I need to achieve is something...

I tried ```c# new NpgsqlDataSourceBuilder(connectionString).ConfigureTracing(options => { options.ConfigureCommandEnrichmentCallback((activity, command) => { var traceId = activity.TraceId.ToString(); var spanId = activity.SpanId.ToString(); var traceFlags = activity.ActivityTraceFlags.HasFlag(ActivityTraceFlags.Recorded) ? "01" : "00"; var traceContext =...

I can but I feel it's not working by design. By the time the command enricher runs, the data reader is already started and I shouldn't be able to modify...

Hi @chrstnb @jackwotherspoon This is the first out of the 3 follow up PRs we agreed in #13178 While I was working on this PR I've noticed one leftover from...

@chrstnb I think the PR is ready for a final review. Upon a final check I noticed a bug in my previous PR that I fixed here: https://github.com/google-gemini/gemini-cli/pull/14854/commits/2c077f949a9a897ee83f46cdbc4b341f153bff00

> Just chatted with @jacob314, can we add an e2e test to confirm that we're not sending the resource tools to the model when there are no resources? @chrstnb @jacob314...