how to filter jmeter dashboard that generated using maven project

765 Views Asked by At

I am generating a dashboard using jmeter, and I want to restrict warmup requests like (sampler names) setPost, setGet, setPut, and setDelete from showing up in the dashboard. But, these have to be run before running other requests.

I tried to use:

jmeter.reportgenerator.exporter.html.series_filter=[^setPost]|[^setGet]|[^setPut]|[^setDelete]

in the reportgenerator.properties file, but I had no luck.

1

There are 1 best solutions below

4
On BEST ANSWER

In JMeter use Menu

  • Help > Export Transactions for report

Help menu

Remove what you don't want.

Finally copy this to user.properties, read this for more details.

For maven, see this so set in pom.xml :

  <configuration>
     <propertiesJMeter>
        <jmeter.reportgenerator.exporter.html.series_filter>^(Java Request)(-success|-failure)?$</jmeter.reportgenerator.exporter.html.series_filter>
     </propertiesJMeter>
  </configuration>