Reputation: 9
I am new to jmeter
and I have couple of questions. Can someone help me out
master-slave
architecture ( master and 4 slaves) for 4000
user load, In which machine will I get the consolidated results for the complete load.Upvotes: 0
Views: 918
Reputation: 168122
By default JMeter stores all Samplers execution metrics into the .jtl results file
If you're not interested in some of the results you can remove them using Filter Results Tool (doesn't come with JMeter, needs to be installed using JMeter Plugins Manager)
Upvotes: 0
Reputation: 21
It's not exactly what you are looking for, but one option is to generate the HTML report that will be configured to include the transactions of interest. This is done by updating the user.properties file for the following properties:
# This property is used by menu item "Export transactions for report"
# It is used to select which transactions by default will be exported
#jmeter.reportgenerator.exported_transactions_pattern=[a-zA-Z0-9_\\-{}\\$\\.]*[-_][0-9]*
Upvotes: 1
Reputation: 1821
You can use the Transaction ControllerTransaction Controller to get consolidated time taken by the nested elements. Add a Transaction Controller as a parent element and set the flag Generate Parent Sample to get the overall time without the details of the nested elements.
Upvotes: 0