Reputation: 11
I am doing Performance testing for my web App with JMeter.
I tried running 6 .jmx by merging all 6 scripts in one .JMX script(through JMeter GUI mode) after that executed on command prompt it was saying active threads are 6(initially), but when i get report after executing .jtl(get after executing .jmx) and tried to check number of active thread it was saying only 1 thread was active through out the time.Here are the 2 Snapshots:
(https://i.sstatic.net/2Yrhn.jpg)
So is it possible to run multiple .jmx recorded script which have different different credentials to login into web App and executing different tasks and also I checked this link and given answer by Dmitri & Nachiket.
I also tried to run more than 1 .jmx scripts one time on command prompt like :
>jmeter -n -t "D:\Program Files\apache-jmeter-3.0\bin\P_testing170817_U_rama.jmx" "D:\Program Files\apache-jmeter-3.0\bin\P_testing170817_U_superuser.jmx
Upvotes: 1
Views: 1596
Reputation: 58812
You probably missing property in jmeter.properties which count threads:
By default, JMeter do not save threads count in JTL files. If you plan to work with JMeter JTL files, you should enable it by uncommenting in JMETER-INSTALL-DIR/bin/jmeter.properties the line:
jmeter.save.saveservice.thread_counts=true
Upvotes: 0