Microsoft KB Archive/815161

From BetaArchive Wiki

Article ID: 815161

Article Last Modified on 3/27/2007



APPLIES TO

  • Microsoft ASP.NET 1.0
  • Microsoft ASP.NET 1.1



SUMMARY

This step-by-step article describes how to measure ASP.NET responsiveness by using the Microsoft Web Application Stress (WAS) tool. The responsiveness of ASP.NET applications can be measured by using tracing, by using the Performance snap-in, or by using the WAS tool. The WAS tool generates an artificial load on a Web server. You want to do this to measure responsiveness, to test scalability, and to tune performance. The WAS tools generates reports that detail the time a Web server takes to respond and to transfer files. This is a critical metric that is used to tune performance. The WAS tool works with any type of Web application. However, there are four considerations for using the WAS tool to most effectively identify performance issues with an ASP.NET application. These considerations are listed in the "Configure the Web Application Stress Tool" section.

back to the top

Configure the Web Application Stress Tool

You must pay attention to the considerations that follow when you configure the WAS tool to test an ASP.NET Web application:

  • You must configure a warm-up period to permit the application to compile and to cache. If you do not configure a warm-up period, the report shows artificially low responsiveness. This does not accurately reflect the behavior of the application under typical use.
  • You must enable cookies, but do not record them as part of the script. This makes sure that each virtual user who is simulated by the WAS tool initiates a separate ASP.NET session.
  • You must enable random delay. This prevents requests being sent to the server faster than the events can be processed.
  • You must configure the WAS tool to run for several minutes. This makes sure that sufficient requests are processed to generate useful statistics.

To configure settings in the WAS tool, follow these steps:

  1. Install and then run the WAS tool.
  2. Create a new script.


For information about how to create scripts, see the WAS tool Help files.

  1. In the Microsoft Web Application Stress window, expand your script and then select Settings.
  2. Set the Stress Level field and the Stress Multiplier field to 1.
  3. Set the Test Run Time to 10 minutes or more.
  4. Select Use Random Delay. Set the Min field to 2000 or more if pages take longer than two seconds to run.
  5. Set the Max field to 5000.
  6. Set the Warmup period to at least 1 minute to permit time for ASP.NET to compile and then cache the application after the first request.
  7. Click to select the Users, Passwords, And Save Cookies check box.
  8. Create and then run the script by using any of the standard methods. To do this, see the WAS tool Help files.

back to the top

Interpret Results to Understand Application Responsiveness

After you configure a Web Application Stress script and then run the script against an ASP.NET site, you can examine the results to understand application responsiveness. Application responsiveness is a key component of actual page load times and the overall user experience. To view your results after you run the script, follow these steps:

  1. On the View menu, click Reports.
  2. Expand your report item of the script and then select the most recent time.


The right pane displays a summary of the report.

  1. Move to the Page Summary section.


For each page in your script, examine the Hits, the TTFB Avg column, and the TTLB Avg column.

The Hits column shows the number of requests that are executed against that page. The number of hits must be greater than 10. This makes sure that sufficient requests were issued to generate a useful average. If Hits is less than 10, increase the Test Run Time field in the script settings and then reexecute the script.

The TTFB Avg column measures the average time (in milliseconds) that the application took to return the first byte of the ASP.NET page. This measurement reflects the time from the request that the user issued to the time when the browser of the user starts to render the page. This is the most significant server-dependant factor in the perceived speed of the site. This measurement relates closely to the time that it takes for ASP.NET to render the page. This measurement also reflects configuration changes that affect performance.

The TTLB Avg column measures the average time (in milliseconds) that the application took to return the last byte of the ASP.NET page. This measurement reflects the time from when the request is issued by the user to the time that the whole page is downloaded. While browsers typically start to render pages after they receive the first byte, the whole page is not visible until after the last byte is transferred.

back to the top

REFERENCES

For additional information, click the following article number to view the article in the Microsoft Knowledge Base:

818015 HOW TO: Tune and Scale Performance of Applications That Are Built on the .NET Framework


For more information about deploying applications, see the .NET Framework SDK documentation or visit the following Microsoft Web site:

http://msdn2.microsoft.com/en-us/library/ybshs20f(vs.71).aspx

back to the top

Keywords: kbhowtomaster KB815161