Github user maoling commented on a diff in the pull request:
https://github.com/apache/zookeeper/pull/629#discussion_r220403065
--- Diff: src/java/main/org/apache/zookeeper/server/ServerStats.java ---
@@ -53,10 +54,13 @@ public ServerStats(Provider provider) {
synchronized public long getMinLatency() {
return minLatency == Long.MAX_VALUE ? 0 : minLatency;
}
-
- synchronized public long getAvgLatency() {
+
+ synchronized public double getAvgLatency() {
if (count != 0) {
- return totalLatency / count;
+ //be account to four decimal places
+ double avgLatency = totalLatency / (double)count;
+ BigDecimal bg = new BigDecimal(avgLatency);
--- End diff --
@lvfangmin
this method is only called in CLI (e.g when exec mntr),so don not worry
about the performance
---