views:

520

answers:

2

When performance testing a web site using the Load Web Test of Visual Studio one gets a summary of the results. Useful measures are shown, like the average response time, maximum response time etc.

One thing that intrigues me is being able to drill down to specific requests if needed, answering questions like what was the single request taking the most time. One can set the Timing Details Storage property of the Run Settings to "All Individual Details", but that only seems to give aggregation per URI, ignoring changes to the query parameters. In my scenario, http://somewebsite/dosomething.ashx?cmd=find is very different from http://somewebsite/dosomething.ashx?cmd=nothing . How do I generate a report which distinguish those?

+1  A: 

AFAIK, Loadtests in VSTS 2008 doesn't allow you to capture request details at a granular level. I've read VSTS 2010(still in beta) has a feature which will allow you to do something similar. http://blogs.msdn.com/billbar/archive/2009/06/09/vsts-2010-load-test-feature-saving-test-logs.aspx

HashName
A: 

Or you can try to check the visual studio reporting tool at http://www.qualiwebsolutions.com/

Pat