You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jmeter.apache.org by GitBox <gi...@apache.org> on 2022/11/01 07:58:22 UTC

[GitHub] [jmeter] dany1233 opened a new issue, #5724: why does only successful requests can be calculated for tag ‘all’ avg time in influxdbBackendListenerClient

dany1233 opened a new issue, #5724:
URL: https://github.com/apache/jmeter/issues/5724

   ### Expected behavior
   
   sorry, my english is poor.
   tag 'all'  has these statu (ok 、 ko、all )  
   
   ### Actual behavior
   
   tag 'all' only has  'all' statu (but actual  for 'ok' requests in avg time)
   
   if (!Double.isNaN(metric.getOkMean())) {
               field.append(',').append(METRIC_AVG).append(Double.toString(metric.getOkMean()));
           }
           if (!Double.isNaN(metric.getOkMinTime())) {
               field.append(',').append(METRIC_MIN).append(Double.toString(metric.getOkMinTime()));
           }
           if (!Double.isNaN(metric.getOkMaxTime())) {
               field.append(',').append(METRIC_MAX).append(Double.toString(metric.getOkMaxTime()));
           }
   
   
   
   ### Steps to reproduce the problem
   
   
   if (!Double.isNaN(metric.getOkMean())) {
               field.append(',').append(METRIC_AVG).append(Double.toString(metric.getOkMean()));
           }
           if (!Double.isNaN(metric.getOkMinTime())) {
               field.append(',').append(METRIC_MIN).append(Double.toString(metric.getOkMinTime()));
           }
           if (!Double.isNaN(metric.getOkMaxTime())) {
               field.append(',').append(METRIC_MAX).append(Double.toString(metric.getOkMaxTime()));
           }
   
   
   
   ### JMeter Version
   
   jmeter 3
   
   ### Java Version
   
   _No response_
   
   ### OS Version
   
   _No response_


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@jmeter.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org