I have an asp.net (c#) project on a remote machine (I can log into this machine).
I want to trace its time consumption (mainly bll code).
Now I use logger with time Stamps, but I thought maybe someone has an better tool\way.
Thanks for any idea
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
We do this 24×7 in production here at stackoverflow using mvc-mini-profiler, which we have released as open-source (just search). With it, I can tell you instantly what TSQL was executed, as well as all the steps used in building this very page (with timing etc), including AJAX requests. And all for free, and with virtually zero impact.
(obviously you can limit the profile display to specific user accounts, etc)