I’m looking for a way to run a jmeter from command line,
collect the data from Summary Report to some file (say every x seconds) during the execution.
Then load the saved file to the jmeter to see the limeline graphs of the collected metrics.
How can I do such thing?
The simplest way automate getting a graph from results is to use a shell script coupled with the ‘JMeterPluginsCMD‘ plugin that allows you to create a graph image from the command line.
Something like:
To litterally read data from the Summary Report would take a lot more work but I imagine you could do something with awk, however I suspect that this method is not explicitly required and that reading the jtl file (after the test has completed) would work.