Currently have Elastic Apm setup with: app.UseAllElasticApm(Configuration);
which is working correctly. I've just been trying to find a way to record exactly how many SQL Queries are run via Entity Framework for each transaction.
Ideally when viewing the Apm data in Kibana the metadata tab could just include an EntityFramework.ExecutedSqlQueriesCount
.
Currently on .Net Core 2.2.3
One thing you can use is the Filter API for this.
With that you have access to all transactions and spans before they are sent to the APM Server.
You can't run through all the spans on a given transaction, so you need some tweaking - for this I use a
Dictionary
in my sample.Couple of thing here:
transaction.Labels["NumberOfSqlQueries"]
we add a label to the given transction, and you'll be able to see this data on the transaction in Kibana.