I have application with may short transactions. I try to use QueryStatistics for performance analizyng, but I can't get a total time for query execution. Current API have only one way to calculate total query time:
getExecutionAvgTime() * getExecutionCount()
But in my case:
-
getExecutionAvgTime() is around zero (0 or 1)
-
getExecutionCount() is over 10 000 000
Internally QueryStatistics contains total execution count, but API leaks getter for this property.
|