hi i am new to Jmeter and using it for API testing. Had a query on how to calculate transaction per second in Jmeter for example if i have 14 http transaction in one thread group how to calculate it and ensure it generates 10 transactions per second for the thread group which has 14 http api calls. where exactly we get to see the TPS in Jmeter is it throughput that we see in summary or aggregrate report which is TPS for each transaction?
Asked
Active
Viewed 5,732 times
1 Answers
2
You can:
either check "Throughput" column value in the Aggregate Report listener
or generate HTML Reporting Dashboard which provides "Transactions per Second" chart:
or use Transactions per Second listener plugin (can be installed using JMeter Plugins Manager)
If you need to limit JMeter's throughput to 10 requests per second - consider adding Constant Throughput Timer to your test plan and configure it according to your requirements

Dmitri T
- 159,985
- 5
- 83
- 133
-
so if the thread group has 14 http requests will adding constant throughput timer to thread group ensure that all 14 requests has 10 tps or 600 rpm? – sidhu May 25 '21 at 01:04