Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JMeter - view more results in View Results Tree

In JMeter GUI when I check execution issues over time I'm using View Results Tree

When I want to stop and view an issue I can see only ~4000 request,

It seems that there's a maximum of requests that is display in GUI,

Can number of request in GUI be increased (or just show all)?

Also when test in running It's causing my problematic request to move up even if Scroll automatically? is unchecked

like image 795
user7294900 Avatar asked Dec 13 '22 19:12

user7294900


1 Answers

In jmeter.properties view.results.tree.max_results property control the number

Set it to 0 for unlimited results.

# Maximum number of results in the results tree

# Set to 0 to store all results (might consume a lot of memory)

view.results.tree.max_results=0

Edit updated in JMeter docs

Starting with version 3.2 the number of entries in the View is restricted to the value of the property view.results.tree.max_results which defaults to 500 entries. The old behaviour can be restored by setting the property to 0. Beware, that this might consume a lot of memory.

like image 185
user7294900 Avatar answered Dec 17 '22 22:12

user7294900