Github user eolivelli commented on a diff in the pull request: https://github.com/apache/zookeeper/pull/601#discussion_r212587862 --- Diff: src/java/main/org/apache/zookeeper/server/quorum/QuorumPeerConfig.java --- @@ -325,6 +327,8 @@ public void parseProperties(Properties zkProp) quorumServicePrincipal = value; } else if (key.equals("quorum.cnxn.threads.size")) { quorumCnxnThreadsSize = Integer.parseInt(value); + } else if (key.equals("metricsProvider.className")) { --- End diff -- In the case of the server side there is no problem. For the client, you can have multiple zk clients in the same jvm. It would be better to have a single way of configuring metrics
---