Github user max3163 commented on a diff in the pull request:

    https://github.com/apache/jmeter/pull/321#discussion_r149308687
  
    --- Diff: 
src/components/org/apache/jmeter/visualizers/backend/influxdb/InfluxdbBackendListenerClient.java
 ---
    @@ -318,6 +335,13 @@ public void setupTest(BackendListenerContext context) 
throws Exception {
                     }
                 }
             }
    +        // Check if more fields are filled ( corresponding to user tag )
    +        context.getParameterNamesIterator().forEachRemaining(name->{
    +            if ( !defaultArg.containsKey(name)) {
    +                TAG_USER += "," + 
AbstractInfluxdbMetricsSender.tagToStringValue(name.trim()) + "=" + 
AbstractInfluxdbMetricsSender.tagToStringValue(context.getParameter(name).trim());
    --- End diff --
    
    Done


---

Reply via email to