Github user mybreeze77 commented on a diff in the pull request:
https://github.com/apache/jmeter/pull/434#discussion_r236041964
--- 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 so. If we can shorten the precision of doubles (like avg, min, max,
pct) to 2 or 3 digits, that will help save about 200 bytes. I can provide an
implementation if consensus reached. What do you think?
---