Bajrang Badaik
Bajrang Badaik

Reputation: 202

Jmeter 5.1.1 - Performance Metrics appears different in Jmeter's in-built Listener and Html Dashboard Report

Here is the snapshot of the Jmeter's in-built Listener enter image description here

And this is the snapshot of Html Dashboard Report of the same .jtl result enter image description here

Here all the mterics are different except the Min value

Can anyone please help here, what I'm missing. Thanks in advance

Upvotes: 0

Views: 189

Answers (1)

Dmitri T
Dmitri T

Reputation: 168247

Looking into JMeter Changelog

  • Bug 58653 - New JMeter Dashboard/Report with Dynamic Graphs, Tables to help analyzing load test results. Developed by Ubik-Ingenierie and contributed by Decathlon S.A. and Ubik-Ingenierie / UbikLoadPack

Most probably these guys from Ubik-Ingenierie are not very good at counting Sample Results especially when it comes to tests which have Transaction Controllers

enter image description here

In order to get consistent results I would suggest using JMeterPluginsCMD Command Line like:

JMeterPluginsCMD.bat --generate-csv result.csv --input-jtl result.jtl --plugin-type AggregateReport

as the result you will get a CSV form of the Aggregate Report listener having the statistics you're looking for

enter image description here

You can install JMeter Plugins Command Line Graph Plotting Tool and Synthesis Report using JMeter Plugins Manager

Upvotes: 1

Related Questions