Github user eolivelli commented on a diff in the pull request: https://github.com/apache/zookeeper/pull/601#discussion_r212987631 --- 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 -- For instance Prometheus may expose a configuration parameter for the URI to bind to (it will default to '/metrics'). Other systems may need authentication parameters.
---