Reputation:
I need a tool to measure a website's performance that's free and does not require any changes to be made to the code (jsp asp pages). All help is appreciated.
Upvotes: 4
Views: 1401
Reputation: 827286
For performance measurement I recommend you YSlow, it's a Firefox add-on integrated with Firebug, it analyzes your web pages and tells you why they're slow based on the rules for high performance web sites.
Also with the Firebug Network Monitoring tab, you can see which resources are taking more time and bandwidth to download:
(source: getfirebug.com)
Upvotes: 5
Reputation: 3097
The other answers to this question focus on performance of a single user of the site from their browser's point of view. If you want to test the performance of your server, for example, to see how many concurrent users you can support, you need to be looking at tools like JMeter.
Upvotes: 0
Reputation: 131112
You could also use Fiddler which will work for browsers other than Firefox. (But will not profile javascript code)
See this post
Upvotes: 0