Network traffic simulation test

I have a PHP site and it works, and db has mysql. Before launching the site, I would like to test the processing of traffic. Now I assume that there is soe software that will simulate traffic and log processes running on my site. Any software recommendation I should use? the traffic should not be real, but, nevertheless, I would like to generate high traffic in order to explore the threshold of the site. Rate help

+5
source share
2 answers

You can use Gatling https://github.com/excilys/gatling .

This is a stress tool written in Scala that aims to be more efficient and lightweight than Jmeter.

Basically, you write the script on your website, and then run it "n" in parallel.

Here are the wikis for more information https://github.com/excilys/gatling/wiki/Basic-Usage

+8
source

You can use Jmeter:

  • It's free.

  • easy to start with lots of documentation on your website and on the Internet

  • It has a proxy function to easily create a test plan from a browser.

  • Easily run processes on other machines. This is remote testing, can be done from a GUI or console.

  • Scripts can be written in beanshell, java or any jsr223 language (groovy, Javascript, scala, jexl ...)

  • , , ,

  • Apache

...

:

0

All Articles