Github user pmouawad commented on a diff in the pull request: https://github.com/apache/jmeter/pull/434#discussion_r235892281 --- Diff: src/components/org/apache/jmeter/visualizers/backend/influxdb/InfluxdbBackendListenerClient.java --- @@ -196,12 +196,18 @@ private void addMetrics(String transaction, SamplerMetric metric) { } private void addErrorMetric(String transaction, String responseCode, String responseMessage, long count) { + final int MAX_RES_CODE_LENGTH_FOR_UDP = 50; --- End diff -- I think this should be a property. Can you point me to the reference that mentions 50 ? Thank you
---