JMeter - non GUI mode - how to get the app to run continously

Viewed 31

SettingsI can get JMeter to run in non GUI mode but it stops after just running just one iteration. How do I get it to run continuously ? Loop Count is set to Infinite in this 5.5 JMeter version.

jmeter -n -t SocialGeneratorTrafficMOCKSQS.jmx -l C:\installs\How2Run_JMeter5_5_cmd_line\Results.csv -e -o C:\installs\How2Run_JMeter5_5_cmd_line\Report.csv

thank you

JMeter

JMeter thread settings

CSV settings

1 Answers

The reason for stopping the thread can be found in jmeter.log file

I can think of 2 possible reasons which might cause premature ending of your test:

  1. CSV Data Set Config is configured to stop thread on EOF, make sure it's set up like at the image below:

    enter image description here

  2. Flow Control Action sampler is configured to stop either thread or test

Related