Farfetch / maestro

A load testing tool to make tests execution and analysis using JMeter.
https://Farfetch.github.io/maestro
MIT License
31 stars 4 forks source link

Metrics are not accurate #826

Open crazyplayy opened 12 months ago

crazyplayy commented 12 months ago

Expected behavior

The metrics received during a test should be accurate and representative of the values we are receiving.

Actual behavior

The metrics received are actually an average sum of several avg values of a determined interval.

Additional information

The avg value of several metrics determines the value of a metric point in a specific time interval. This avg value is then added to other avg values of the same time interval, resulting in the end on the avg of all avg. (avg_1) + (avg_2) + (avg_3) ... metrics value = ------------------------------

of avg's

Possible fix

Redo the metric calculation algorithm.