how to create simulator for web application for load test and stress test

前端 未结 3 1766
-上瘾入骨i
-上瘾入骨i 2021-01-16 16:28

how can i record the web server log files and replay the the recorded server logs so that i can latter run the logs and check the load on sql server.

ex. number of r

3条回答
  •  爱一瞬间的悲伤
    2021-01-16 17:17

    Build a tool that can parse the log files from the web server and replay the requests again. Then you generate test cases by accessing your site using a normal web browser and record the log files.

    You can then replay the same sequence over and over again and your tool could also read multiple logs and play them back simultaneously to simulate concurrency.

    Make sure that the log files include all GET and POST request parameters as well as timestamps.

提交回复
热议问题