Can I view QPS and TPS in Gatling report?

Dear friend,
Now I’m learning gatling and I want to know can I view additional indicators like QPS and TPS in reports?
can I change the default indicators in gatling report?
Looking forward to your reply.

Hello Yingjie,

what is the QPS?
TPS is the requests/sec:

  • which you can find it in the Number of Requests per Second graph

regarding changing the indicators:

  • open gatling.conf file
  • go to charting/indicators section:

charting {
#noReports = false # When set to true, don’t generate HTML reports
#maxPlotPerSeries = 1000 # Number of points per graph in Gatling reports
#useGroupDurationMetric = false # Switch group timings from cumulated response time to group duration.
indicators {
#lowerBound = 800 # Lower bound for the requests’ response time to track in the reports and the console summary
#higherBound = 1200 # Higher bound for the requests’ response time to track in the reports and the console summary
#percentile1 = 50 # Value for the 1st percentile to track in the reports, the console summary and Graphite
#percentile2 = 75 # Value for the 2nd percentile to track in the reports, the console summary and Graphite
#percentile3 = 95 # Value for the 3rd percentile to track in the reports, the console summary and Graphite
#percentile4 = 99 # Value for the 4th percentile to track in the reports, the console summary and Graphite
}
}

  • uncomment the line which you need to change
  • the percentile values in the report table can be changed by editing the percentile1, percentile2 …
  • the range of the indicators can be given in lowerBound and higherBound

Thanks
Sujin Sam