Issue
5/03/25 09:36:45 INFO - jmeter.engine.StandardJMeterEngine: Running the test!
2015/03/25 09:36:45 INFO - jmeter.samplers.SampleEvent: List of sample_variables: []
2015/03/25 09:36:45 INFO - jmeter.gui.util.JMeterMenuBar: setRunning(true,*local*)
2015/03/25 09:36:45 INFO - jmeter.engine.StandardJMeterEngine: Starting ThreadGroup: 1 : Thread Group
2015/03/25 09:36:45 INFO - jmeter.engine.StandardJMeterEngine: Starting 1 threads for group Thread Group.
2015/03/25 09:36:45 INFO - jmeter.engine.StandardJMeterEngine: Thread will continue on error
2015/03/25 09:36:45 INFO - jmeter.threads.ThreadGroup: Starting thread group number 1 threads 1 ramp-up 1 perThread 1000.0 delayedStart=false
2015/03/25 09:36:45 INFO - jmeter.threads.ThreadGroup: Started thread group number 1
2015/03/25 09:36:45 INFO - jmeter.engine.StandardJMeterEngine: All thread groups have been started
2015/03/25 09:36:45 INFO - jmeter.threads.JMeterThread: Thread started: Thread Group 1-1
2015/03/25 09:36:45 INFO - jmeter.threads.JMeterThread: Thread is done: Thread Group 1-1
2015/03/25 09:36:45 INFO - jmeter.threads.JMeterThread: Thread finished: Thread Group 1-1
2015/03/25 09:36:45 INFO - jmeter.engine.StandardJMeterEngine: Notifying test listeners of end of test
2015/03/25 09:36:45 INFO - jmeter.gui.util.JMeterMenuBar: setRunning(false,*local*)
I am trying to load test my application with JMeter but it doesnt seem as though it is running my test correctly, the log file for the application shows no signs of incoming messages but my test log output from JMeter shows the above - it appears as though the test is running from this - can anyone shed some clarity on what might be going wrong or what I might have not done?
Solution
Add a 'View results in a table' Listener to your Thread Group. This will show you each request and the result - eg if it's HTTP you will get URL, status code etc.
Have a look at the doco here
Answered By - stringy05