Jmeter alternative

PerformanceJmeterGrinder

Performance Problem Overview


I'm looking for a freeware / simpler alternative to JMeter. It is a very complete yet complex tool and all I need is to simulate a number of simultaneous calls to a site, grab stats about performance (time to the response) and see how many concurrent calls it can endure without breaking. Some chart thrown in would be useful.

Performance Solutions


Solution 1 - Performance

Use Apache Benchmark (ab). It's a command line tool that ships with apache web server. If you're running *nix, chances are it's already installed on your machine. For example, if you want to send 1000 requests to a web server running on localhost using 10 concurrent threads you would do this:

$ ab -n 1000 -c 10 http://localhost/

It'll spit out a nice report giving you interesting stats such as requests per second, number of failures, and much more.

Solution 2 - Performance

Maybe you could try Gatling .

It provides a GUI, recorders, reports (response time distribution, requests per second over time,..),...

I think that the biggest difference between gatling and jmeter is that gatling does not use 1 thread for 1 user, but uses async IO. It could be interesting if you have performance issues whith jmeter (and if you cannot use jmeter in a distributed mode)

Solution 3 - Performance

Try Grinder, it's reasonably simple to use, and can be scripted.

Solution 4 - Performance

Try FunkLoad, a functional and performance testing tool for web apps, written in Python.

Solution 5 - Performance

Try jmeter + jmeter plugins code.
It should be as simple as others.

Solution 6 - Performance

Grinder, Funkload, SoapUI (only for Soap Services), Neoload (for load test), Charles Proxy

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionpistacchioView Question on Stackoverflow
Solution 1 - PerformanceAsaphView Answer on Stackoverflow
Solution 2 - PerformanceManuel VerriezView Answer on Stackoverflow
Solution 3 - PerformanceskaffmanView Answer on Stackoverflow
Solution 4 - PerformanceStefane FermigierView Answer on Stackoverflow
Solution 5 - Performanceuser1565007View Answer on Stackoverflow
Solution 6 - PerformanceachalsudheerView Answer on Stackoverflow