FSchumacher commented on a change in pull request #608:
URL: https://github.com/apache/jmeter/pull/608#discussion_r467488637



##########
File path: 
src/components/src/main/java/org/apache/jmeter/visualizers/backend/influxdb/InfluxdbBackendListenerClient.java
##########
@@ -209,14 +209,15 @@ private void addErrorMetric(String transaction, 
ErrorMetric err, long count) {
     private void addMetric(String transaction, int count,
                            Long sentBytes, Long receivedBytes,
                            String statut, double mean, double minTime, double 
maxTime,
+                           int hits,
                            Collection<Float> pcts, PercentileProvider 
percentileProvider) {
         if (count <= 0) {
             return;
         }
         StringBuilder tag = new StringBuilder(95);
         tag.append(TAG_APPLICATION).append(applicationName);
-        tag.append(TAG_STATUS).append(statut);
         tag.append(TAG_TRANSACTION).append(transaction);
+        tag.append(TAG_STATUS).append(statut);

Review comment:
       We could fix the typo of the parameter while we're here :)




----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to