fix percentile plots

This commit is contained in:
2022-11-20 17:18:27 +01:00
parent 38c6c04f46
commit b0bbe7b9fa

View File

@@ -55,6 +55,8 @@ public class PercentilesAggregator {
}
public void collect(final LongLongHashMap map) {
percentiles.put("0.000", 0L); // make sure "0.000" is the first element in the sorted percentiles. Will be
// overwritten with the correct value later
map.forEachOrdered(this);
percentiles.put("0.000", minValue);
percentiles.put("100.000", maxValue);