Reputation: 25
I am using Jmeter 4.0, when run the example downloaded from Active Threads Over Time Listener document page, the graph has not changed since the beginning and end,
here the thread group :
Upvotes: 1
Views: 1485
Reputation: 168002
I noticed you're running JMeter test in GUI mode. Please don't., GUI mode is supposed to be used for tests development and debugging only, it is not suitable for test executions.
The test plan you're using generates > 5 millions samples in a > 500 MB file which is very "heavy" for interactive GUI listener updating.
Run your Test in command-line non-GUI mode like:
jmeter -n -t ActiveThreadsOverTimeExample.jmx -l result.jtl
result.jtl
file The graph should be displayed properly (you might have to wait a little bit)
A better option would be using Command-line Graph Plotting Tool like:
Execute the following command:
JMeterPluginsCMD.bat --generate-png threadsovertime.png --input-jtl result.jtl --plugin-type ThreadsStateOverTime --width 1024 --height 768
Once command finishes you will be able to see the chart in the threadsovertime.png
file
You can install JMeter Plugins Command Line Graph Plotting Tool using JMeter Plugins Manager.
Upvotes: 1