2

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.

Joel
  • 1,564
  • 7
  • 12
  • 20
nishanth
  • 23
  • 2

1 Answers1

0

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>
UBIK LOAD PACK
  • 33,980
  • 5
  • 71
  • 116
  • can you give me a link how to filter dashboard – nishanth Nov 09 '18 at 21:12
  • thank you, but is there is any way to ignore requests with name above I mentioned instead of writing all request names I have more than 20 request with different names, but request names are different for each test plan only common is request which I have mentioned in question – nishanth Nov 09 '18 at 21:35
  • Try this ^(?!IgnoreMe)(-success|-failure)?$ – UBIK LOAD PACK Nov 09 '18 at 21:48
  • is there any chance to ignore all requests in a thread for the first loop, if I have 1 thread and 11 loops ignore results of 1st loop in the report – nishanth Nov 12 '18 at 16:07