Walkthrough: profiling an ASP.NET application

This walkthrough describes how to profile a sample ASP.NET website called NerdDinner. You can download the original ASP.NET MVC source code for NerdDinner from CodePlex: in this example, the NerdDinner code has been modified to illustrate a performance problem.

Download the modified version of NerdDinner

In this example, NerdDinner is run from the Visual Studio web development server on the same computer as the one being used to profile it. The site can be accessed in a web-browser at http://127.0.0.1:8090.

For information on how to set up NerdDinner, see the Readme file supplied with the modified version.

Imagine that the problem with NerdDinner is that it is slow to return results for a search involving a SQL query. Imagine you want to know whether you can do anything in the application's .NET code to improve the site's performance, before you investigate performance on the database, or spend money to improve the hardware the site runs on.

There are three main steps:

  1. Set up ANTS Performance Profiler
  2. Use NerdDinner
  3. Analyze the profiler's results

Setting up ANTS Performance Profiler

To set up ANTS Performance Profiler:

  1. In the ANTS Performance Profiler settings, on the Application Settings tab, select ASP.NET web application (web development server).
  2. In ASP.NET web application (path), enter the path to the NerdDinner Default.aspx file.
  3. Choose the required profiling mode. Here, we'll use line-level and method-level timings.
  4. Choosing a profiling mode
  5. Under .Net version, select .NET 4.
  6. Click Start profiling button.
  7. Internet Explorer launches and loads NerdDinner.

If you prefer not to use Internet Explorer, you can open a different browser at the same address. You must, however, leave open the instance of Internet Explorer created by the profiler.

ANTS Performance Profiler launches NerdDinner in Internet Explorer

Using NerdDinner

In this example, the NerdDinner site includes several pages that rely heavily on database queries, as well as some static HTML. Imagine users have reported that the site's location search feature is slow: we start the investigation by exercising that feature, entering a place name in the search box and hitting Search. The search is designed to return a list of events near a specified location.

While we use the site, ANTS Performance Profiler's timeline shows the CPU usage the application has caused:

Looking at NerdDinner's CPU usage

There's a brief, expected CPU peak when the site launches. CPU then returns to near zero until we start our search, when it begins to grow to nearly 200%, staying high for long after the first results were returned. This clearly indicates a performance bottleneck in the search feature.

Now we see where the bottleneck may lie, we can explore the results in detail: In the ANTS Performance Profiler window, click Stop Profiling.

The Stop Profiling button

The website closes.

Analyzing the profiler's results

After a few moments, full results are shown.

At the top of the call tree, ANTS Performance Profiler shows the 'hottest' stack trace; that is, the code that contributes the greatest proportion of CPU time. This is usually a good place to start looking for opportunities to optimize the code.

The 'hottest' stack trace in the Call Tree

At the top of each call tree stack, we see the HTTP request that triggered the calling of the .NET methods. As we expected, the hottest stack trace during the whole profiling session descends from the request http://127.0.0.1:8090/Search/SearchByLocation, child methods of which account for nearly 95% of the total time spent in the profiling session.

Looking down the hot stack, we can see that this request called a .NET method, NerdDinner.Models.DinnerRepository.NearestDinners(double latitude, double longitude), that was hit nearly 4000 times - as was the SQL SELECT query it ultimately runs.

For more information on hot stacks and HTTP nodes, see Working with the call tree.

If we select the method's parent, NerdDinner.Controllers.SearchController.SearchByLocation(float latitude, float longitude), we can view its source code. Because we used a profiling mode with line-level timings, we can also see where inside the method the greatest time was spent. This shows us that the method retrieves the full list of all recorded events from the database:

Looking inside a method, with line-level timings

The method NerdDinner.Models.DinnerRepository.FindByLocation(float latitude, float longitude) then tries to process the result set in the web page, to filter by location:

The method tries to process a set of database results on the web page

These methods are good candidates for optimization. The same results could be achieved via AJAX calls, and by returning from the database only events that meet specified latitude and longitude criteria.

For more on the source code view, see Working with source code.

Switching to Database Calls view, we can see that the query to return the full results set was run thousands of times, summing to over 30 seconds just to return the first result for all the instances of the query:

The Database Calls view

Again, it's clear that this very broad request is being run repeatedly, contributing a large total running time. It would be more efficient to run a more precise request fewer times.

For more on SQL query timings, see Working with Database Calls view.

After profiling, we now have a clear idea of which HTTP requests are associated with slow performance, and which of our .NET methods contain the source of those slowdowns. We know which methods to rewrite to remove bottlenecks, and the steps we'll need to reproduce in the application to check that the problem has gone.

Pricing
from $395
ANTS Performance Profiler is available as a standalone tool, or as part of the .NET Developer Bundle.



Volume discounts apply.
Got a question?
0800 169 7433
Download

Try a 14-day fully functional free trial of ANTS Performance Profiler.

.NET Developer Bundle
.NET Developer Bundle

3 tools that help you to write performant, high quality software

Contains:

Find out more: