I have an asp.net application, before the application can provide services, it needs to build a very large local cache. I want to profile a specific piece of code. My application is quite huge, I do not want to completely profile it. I just want to profile the path of the code that serves the request.
I am starting to use dotMemory
to track application memory usage. When I try to connect to a process,
profiler settings from two check boxes in the dialog box: 1) collect every N-th object 2) the collection of memory traffic cannot be checked.
Why dotMemory
n't dotMemory
collect traffic and traffic information when trying to connect to a direct process?
I am also trying to use the profiler API.
private void SomeMethod() {
I can get a snapshot, but the application starts first, and then after that profiler. I also cannot get memory traffic.
source share