The metrics use durations computed from Environment.TickCount, which typically has a resolution of 15ms. This isn't fine-grained enough to report DB connection creation times.
Switch to using Stopwatch.GetTimestamp() or a similar high-resolution timer.
The metrics use durations computed from
Environment.TickCount, which typically has a resolution of 15ms. This isn't fine-grained enough to report DB connection creation times.Switch to using
Stopwatch.GetTimestamp()or a similar high-resolution timer.