add percentile plots

This commit is contained in:
ahr
2018-03-03 08:19:26 +01:00
parent b4a0514267
commit 6b60fd542c
13 changed files with 118 additions and 337 deletions

View File

@@ -95,8 +95,8 @@ public class PerformanceDb implements AutoCloseable {
final long entriesPerSecond = (long) (insertionsSinceLastSync / (duration / 1000.0));
METRICS_LOGGER
.debug(String.format("inserting %d/s ; the last %,d took %dms; total entries: %,d; last entry: %s",
entriesPerSecond, insertionsSinceLastSync, duration, count, entry));
.debug(String.format("inserting %d/s ; total: %,d; last: %s",
entriesPerSecond, count, entry));
tagsToFile.flush();
lastSync = System.currentTimeMillis();