You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#18016 covers the basic counters implemented for EF Core 5.0. Below are some additional ideas that we may implement in the future, based on user feedback:
Initialized DbContexts (total/rate per second)
Relational command cache hit/miss ratio. This would also be our only relational counter, and the value here is questionable.
Batching statistics (average DbCommands per batch). Not clear how this can be actionable.
DbConnection statistics (e.g. connection that are currently open, or number of connections with counter > 0)
General/basic execution statistics (how many commands are getting executed, etc.). This would probably largely duplicate what the underlying ADO.NET provider could/would expose, but it's still valuable (for ADO.NET providers which don't yet have event counters, for non-relational providers).
Lazy loading metrics. Not immediately clear how to understand identify the N+1 problem from this number.
#18016 covers the basic counters implemented for EF Core 5.0. Below are some additional ideas that we may implement in the future, based on user feedback:
The text was updated successfully, but these errors were encountered: