Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Web server performance/test tool

I'm looking for a tool that simply tests a web server which I developed an application on it.

Tool must tell me that entire web server or a page in my application
- can serve at most how many users
- can use how much CPU
- can measure transaction per second (TPS)

Please do not confuse my question for a kind of http(s) listening tools like Fiddler.I do not want to listen,I do want to test it (This is like "Can you run it" tool for a game)

like image 749
Myra Avatar asked Oct 28 '09 19:10

Myra


People also ask

Which is a server performance testing tool?

Apache JMeter JMeter is a popular open-source load and performance testing tool. It can examine and benchmark a wide variety of software, including networks and servers. It is usually used to test web service applications for the load. Incorporate JMeter, a Java platform application.


1 Answers

ApacheBench (don't be fooled by the name) will load up your app and give you a count of how many requests per second you can deliver. In addition, it's concurrency options will give you an idea of usercount.

See also the Microsoft Web Capacity Analysis Tool.

like image 133
Ian Gregory Avatar answered Sep 28 '22 18:09

Ian Gregory