Reputation: 5398
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?
Upvotes: 5
Views: 28441
Reputation: 39
You need to check below things before hitting the run button:
Make Sure the "Thread Group" is Enabled (Not sure but for me it was disabled when I open my .JMX file from recent files), If you have Login parameter added then make sure it is enabled as well.
Go to the location where you kept the .CSV file and double check the path in Jmeter as well. Because without the csv data it will stop the Thread at 1-1. (Above Error)
Make Sure the Results (Listeners) are merged with the Thread and are Enabled.
Upvotes: 3
Reputation: 1
i tried to put the full link in the path field and it worked successfully
Upvotes: 0
Reputation: 1
I kept getting the same error
screenshot of error log:
However, removed the HTTP part from the IP address and it worked fine.
screenshot of the http request page:
Upvotes: 0
Reputation: 11
Do you have any regular expression extractors or CSV Data set config files empty? No data or capturing anything? If so, please toggle them off (Ctrl+T) or Cmmnd+T - OSX, Linux. Should fix that
Upvotes: 1