infer actual method run time excluding children
cbertolasio
Posts: 4
I am looking at a method in the "All Methods" tab. The method has the following statistics: Hit Count 15057, Time (sec) 52.1525, Average Time (sec) 0.1019, Time w/ Children (Sec) 1533.5680.
If I use the following math, Time w. Children / Hit Count the result = Average Time (sec.)
I want to find the average time taken by the method EXCLUDING children. Can I simply take Time (sec) / Hit Count?
If I use the following math, Time w. Children / Hit Count the result = Average Time (sec.)
I want to find the average time taken by the method EXCLUDING children. Can I simply take Time (sec) / Hit Count?
Comments
yes indeed you can simpy divide the time by the hit count to get the average time per call excluding children.
Thanks,
Tom Harris
Red Gate Software
Tom