25

Are there any good (preferably free) tools out there?

Can they give accurate estimates that reflect production results when the app goes live?

Andykiteman
  • 702
  • 1
  • 7
  • 17
  • 1
    Stress test usually means testing the whole stack of software that delivers the information and is not necessarily bounded to a language. Another term would be performance testing. And You may also want to try functional web testing tools to test the most paths. Want you want is quite large. – Loki Nov 23 '08 at 00:06

7 Answers7

10

I would personally go with Apache Bench http://httpd.apache.org/docs/2.0/programs/ab.html

It's free, straight forward to use and lightweight.

If you are looking for a something a little more robust then I think Apache JMeter might be worth looking at. http://jmeter.apache.org/. Again, it's free, a bit of a learning curve and has a GUI so a little heavier.

You might also want to take a look at this Q/A Performing a Stress Test on Web Application?

Community
  • 1
  • 1
Matt Smith
  • 3,479
  • 2
  • 28
  • 29
5

WebLoad is open source:

http://www.webload.org/

BobbyShaftoe
  • 28,337
  • 7
  • 52
  • 74
  • 1
    After a Google search for Webload, I came upon this site: http://www.radview.com. They charge you a license fee and I couldn't find the open source link. – Pablo Marambio Aug 07 '12 at 19:11
  • Yeah, not only is it not open source it's very expensive – Hut8 Oct 13 '13 at 19:46
4

There's a good summary of tools here.

digitalsanctum
  • 3,261
  • 4
  • 29
  • 43
3

Rails comes with performance testing built in: http://guides.rubyonrails.org/performance_testing.html

user456584
  • 86,427
  • 15
  • 75
  • 107
3

This is definitely not a free solution, but webmetrics will get the job done. (As well as any website monitoring company in general). They give thorough reports on your web site's performance, and when you schedule load tests you can specify how much load you want to simulate (e.g. simulate 2000 users using my site at once).

I don't think it will break it down and tell you your CPU usage and such, as they stress your website from their servers.

Claudiu
  • 224,032
  • 165
  • 485
  • 680
2

You can try Trample, it is load simulation tool here

Seyhun Akyürek
  • 851
  • 9
  • 17
  • 2
    looks like trample is now at http://github.com/jamesgolick/trample I've also heard of http://github.com/dbrady/tourbus and of course jmeter. – rogerdpack Jun 22 '10 at 20:13
0

If you want to visualize performance instead of just look at the numbers you might try Engulf. It's Open Source Software, distributed, and high-performance. http://engulf-project.org/#usage Disclaimer: It's a project I work on.

Andrew Cholakian
  • 4,392
  • 3
  • 26
  • 27