Use Visual Studio 2010 to Profile your ASP.NET Application which is hosted on IIS






4.90/5 (5 votes)
How to use Visual Studio 2010 to profile your ASP.NET application which is hosted on IIS
Most of you are well aware of command line profiling for ASP.NET application using VSPerfASPNETCmd command line tool. This can easily profile your ASP.NET Web applications which is hosted on IIS. We just need to run VSPerfASPNETCmd command with the required parameter. Once profiling has been done, we can inspect the generated performance report (.vsp) file within Visual Studio. But, do you know we can do the complete profiling within Visual Studio itself. How? Here you go.
[Note: I recorded a quick 3 min video on the same and embedded at the end.]
Start a new instance of Visual Studio 2010 and Open Performance Explorer from Analyze Menu. Click on the “New Performance Session” icon.
This will create a new Performance session for you with two different folders, Reports (which is the repository for all .vsp files) and Targets (Targets folder shows the binaries that are profiled in the current session).
Now, here is the trick. Right click on “Targets” folder and click on “Add Existing web Site…”
The below dialog will appear where we have to provide the URL of your application which is hosted on IIS.
Click on OK, you will find the associated file that targeted to your web application within the targets folder.
Now you can start profiling by clicking on “Start Profiling” option from the Performance session context menu.
Now you can see your profiling being started and checkout the targeted process Id for profiling (In Performance output window). Yes, it’s targeted to the worker process (w3wp.exe) for the application which is running at IIS.
Stop profiling when you are done with the navigation of your application, you will find the generated reports under reports folder.
Now you can inspect the performance report within your Visual Studio itself.
Here is a quick video:
Here are a few useful tips and tricks on profiling:
- How to enable Tier Interaction Profiling ( TIP ) in Visual Studio 2010 Profiler?
- Highlighting Execution Hot Path in Visual Studio 2010 Profiler Call Tree
- Create Work Item in TFS for Specific Visual Studio 2010 Profiler Report
- Setting Up Noise Reduction Option for Performance Reports in Visual Studio 2010 Profiler
- How to change Default Performance Report Name in Visual Studio 2010?
Hope this helps.
Cheers!
Aj
Filed under: ASP.NET 4.0, IIS, Profiler, Visual Studio 2010