apm-agent-dotnet
apm-agent-dotnet copied to clipboard
Elastic APM .NET Agent
Follow up to #2557 Removes `CHANGELOG.asciidoc`. Use `docs/release-notes/index.md` instead. Notes: * **Findability**: I removed this to prevent anyone from editing this file. If you're concerned about users expecting a changelog...
When the `ApiKey == string.Empty`, a header will be added. This seems unlikely to be intended. Dito for `SecretToken`. We have had some problems due to this handling in Summer...
The escaped log template does not match the log arguments. This causes a nullreference exception with serilog, since the `LogValuesFormatter` creates a `LogValues` where the last item is null. https://github.com/elastic/apm-agent-dotnet/blob/36670d5760fe0128e2082dc6918be4c40a3f0efc/src/Elastic.Apm/Logging/LogValuesFormatter.cs#L182C3-L198C4
We frequently experience NullReferenceExceptions in our logging registered by the first chance exception handler. It is caused by `intakeResponse` being not null: Accepted = 0, Errors = null, and then...
In EF, the [`TagWith`](https://learn.microsoft.com/en-us/ef/core/querying/tags) API lets users tag queries with information that is then included in the generated SQL statement. Our `SignatureParser.Parse` method doesn't support tags, so they are trimmed...
#### What Using the production environment for this makes sense to ensure we are testing against released APM features. In the subsequent tests, we'd need to access the APM endpoint...
Requires a null check. `transaction` can be null. _Originally posted by @aheubusch in https://github.com/elastic/apm-agent-dotnet/pull/2427#discussion_r1961853629_
Make it possible to add custom processing for trigger-specific data since there is now a registration of specific data for http trigger, such triggers as rabbitmqtrigger are left without proper...
Hello, Is it possible to override the value of transaction.Result & transaction.Outcome when using AspNetCoreDiagnosticSubscriber? I tried various ways to override but always AspNetCoreDiagnosticListener is overriding at last. Thanks in...