dotTrace measure for different calls of same method
Hi,
I am trying to capture metrics over a period of time - where same method could be called multiple times. Is it possible to capture time taken for each execution - instead of total for all executions.
For ex - if Method1() is called 5 times - looking for
Method1() - 10ms
method1() - 12ms
Method1() - 8 ms
Method1() - 7ms
Method1() - 13ms
Please sign in to leave a comment.
Hi,
Unfortunately, it is not possible. However, if the calls are distributed in the time, you can profile your application using Timeline profiling mode and then investigate time intervals that correspond to the specific calls of a method.