Comments
1 comment
-
Hi,
if i've understood you correctly you just want to see certain points in time when profiling.
This is the main purpose of the time line. You simply click and drag on the time line over the regions of CPU that you wish to see. It will then just show you the code that was executed just for the selected region (see the instruction on main profiler UI).
After the initial calls it might be worth putting in a thread.sleep for a second or so to make it really clear or you can add a call into the redgate.profiler.userevents.dll to add an event to the timeline for your reference.
You can find more information on the timeline here:
Profiler time line
Regards,
Stephen
Add comment
Please sign in to leave a comment.
When profiling, I'm finding it very difficult to seperate the warm-up or start-up caching runs from the actual runs that I want to profile.
If it were a web app I'd have started it up, made sure the caching was there and then attached the profiler.
I would like to either programmatically force the profiler to toss away information at a point, or be able to break the profiling run to toss away performance information before a given point in the run.