Gergely Kalapos

Results 125 comments of Gergely Kalapos

We released the [`Elastic.Apm.Extensions.Hosting`](https://www.nuget.org/packages/Elastic.Apm.Extensions.Hosting/) package which I believe will make this better - it's currently beta, in the next release we can remove the beta flag. That package has an...

This is somewhat related to https://github.com/elastic/apm-agent-dotnet/issues/267. One idea we have is that we generate C# types based on the APM Server schema and make those public, although it's not high...

Hi @KINGGUOKUN tldr: I think it's because of the `if (!Elastic.Apm.Agent.IsConfigured) return` check - that returns false and you always return from the `DoXXX` method. How do you enable the...

Ok, I see. In this setup, I'd still avoid the static API and enable the agent with the `UseElasticApm` method. > HostService traced success fully, but other traces lose, eg,...

Thanks for reporting, we'll definitely look at this.

I was working on something totally different, but then I ran into this. The suggestion above works, but [that ends up in this method](https://github.com/elastic/apm-agent-dotnet/blob/main/src/Elastic.Apm.NetCoreAll/ApmMiddlewareExtension.cs#L45-L48) which is an extension method for...

Summery of a discussion from the weekly meeting: https://github.com/nullean/assembly-differ seems to be an ideal tool to test for such things. We could add it as part of the CI pipeline...

Thanks for all the info @sluebbert. > That code is called even if the module is removed from the web.config, so I wonder if that narrows it down. Yes, it...

Hi @sluebbert, I'm quite sure this is related to GC metrics collection. ### Workaround e.g.: `set ELASTIC_APM_DISABLE_METRICS=clr.gc.*` For now, I'd say the easiest would be to just disable GC metrics...

#750 with the fix is already on `master` - I'll keep this open for the next days to make sure all good - if so, then I'll close and the...