Jmeter: Segregate result error count based on Assertion

47 Views Asked by At

I am performing a performance test on my API using Jmeter. I have 3 assertions

  1. 200 ok
  2. duration limit under 3s
  3. example.jsonpath.result = "OK"

I am getting the error as a total percentage Error %

I want my error% to be segregated according to type of assertion in the exported csv.

like i was able to do int postman

Post Man error segregation

can i achieve this using Jmeter

1

There are 1 best solutions below

0
Dmitri T On

It is not achievable via any of existing Listener or Plugins

The options are in:

  1. JMeter's .jtl results file is a normal CSV file so you can export it into MS Excel or equivalent and come up with formulae displaying the statistics you need
  2. You can use Backend Listener to send the data to InfluxDB and then come up with Grafana dashboard showing the statistics you need
  3. You can create your own Listener as JMeter architecture is modular and open for extension