SNA
SNA

Reputation: 7718

tools to measure asp .net web application performance

HI,

Can anyone suggest good tools to analyze asp .net application performance and find the bottle necks?

Thanks SA

Upvotes: 2

Views: 2082

Answers (3)

Alex Nolasco
Alex Nolasco

Reputation: 19446

Assuming you have IIS logs enabled, you can take a look at the slowest pages by using the LogParser.

Also keep an eye on performance counters like Current Requests, Queued Requests, etc. If you are having lots of queue requests, it may be time to start using async as your ASP.NET threads are just idle waiting for other resources.

You may also want to check out PerfView to obtain stack information in a production environment for long/slow requests.

Upvotes: 0

GrillerGeek
GrillerGeek

Reputation: 248

We have had great luck with Redgate's ANTS Profiler: http://www.red-gate.com/products/ants_performance_profiler/index.htm

It allowed us to find our slowest methods and start working on improving each one with measurable results. They even have a free trial that is not limited (as far as we could tell).

I suggest trying that out.

Upvotes: 2

rAm
rAm

Reputation: 1106

First, start using basic tools like yslow (a firefox addon for any web application). Now there are various aspects to performance testing depending on what you want to test you have to chose appropriate tools.

You can find some information here and here

Upvotes: 1

Related Questions