Categories:
Audio (13)
Biotech (29)
Bytecode (35)
Database (77)
Framework (7)
Game (7)
General (512)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (86)
JavaBeans (16)
JDBC (89)
JDK (337)
JSP (20)
Logging (103)
Mail (54)
Messaging (8)
Network (71)
PDF (94)
Report (7)
Scripting (83)
Security (32)
Server (119)
Servlet (17)
SOAP (24)
Testing (50)
Web (19)
XML (301)
Other Resources:
Apache ZooKeeper Server Source Code
Apache ZooKeeper is an open-source server which enables highly
reliable distributed coordination.
Apache ZooKeeper Server Source Code files are provided in the source packge (apache-zookeeper-3.7.0.tar.gz). You can download it at Apache ZooKeeper Website.
You can also browse Apache ZooKeeper Server Source Code below:
✍: FYIcenter.com
⏎ org/apache/zookeeper/metrics/impl/DefaultMetricsProvider.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.zookeeper.metrics.impl; import java.util.Objects; import java.util.Properties; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentMap; import java.util.function.BiConsumer; import org.apache.zookeeper.metrics.Counter; import org.apache.zookeeper.metrics.Gauge; import org.apache.zookeeper.metrics.MetricsContext; import org.apache.zookeeper.metrics.MetricsProvider; import org.apache.zookeeper.metrics.MetricsProviderLifeCycleException; import org.apache.zookeeper.metrics.Summary; import org.apache.zookeeper.metrics.SummarySet; import org.apache.zookeeper.server.metric.AvgMinMaxCounter; import org.apache.zookeeper.server.metric.AvgMinMaxCounterSet; import org.apache.zookeeper.server.metric.AvgMinMaxPercentileCounter; import org.apache.zookeeper.server.metric.AvgMinMaxPercentileCounterSet; import org.apache.zookeeper.server.metric.SimpleCounter; /** * Default implementation of {@link MetricsProvider}.<br> * It does not implement a real hierarchy of contexts, but metrics are flattened * in a single namespace.<br> * It is mostly useful to make the legacy 4 letter words interface work as * expected. */ public class DefaultMetricsProvider implements MetricsProvider { private final DefaultMetricsContext rootMetricsContext = new DefaultMetricsContext(); @Override public void configure(Properties configuration) throws MetricsProviderLifeCycleException { } @Override public void start() throws MetricsProviderLifeCycleException { } @Override public MetricsContext getRootContext() { return rootMetricsContext; } @Override public void stop() { // release all references to external objects rootMetricsContext.gauges.clear(); } @Override public void dump(BiConsumer<String, Object> sink) { rootMetricsContext.dump(sink); } @Override public void resetAllValues() { rootMetricsContext.reset(); } private static final class DefaultMetricsContext implements MetricsContext { private final ConcurrentMap<String, Gauge> gauges = new ConcurrentHashMap<>(); private final ConcurrentMap<String, SimpleCounter> counters = new ConcurrentHashMap<>(); private final ConcurrentMap<String, AvgMinMaxCounter> basicSummaries = new ConcurrentHashMap<>(); private final ConcurrentMap<String, AvgMinMaxPercentileCounter> summaries = new ConcurrentHashMap<>(); private final ConcurrentMap<String, AvgMinMaxCounterSet> basicSummarySets = new ConcurrentHashMap<>(); private final ConcurrentMap<String, AvgMinMaxPercentileCounterSet> summarySets = new ConcurrentHashMap<>(); @Override public MetricsContext getContext(String name) { // no hierarchy yet return this; } @Override public Counter getCounter(String name) { return counters.computeIfAbsent(name, (n) -> { return new SimpleCounter(n); }); } @Override public void registerGauge(String name, Gauge gauge) { Objects.requireNonNull(gauge, "Cannot register a null Gauge for " + name); gauges.put(name, gauge); } @Override public void unregisterGauge(String name) { gauges.remove(name); } @Override public Summary getSummary(String name, DetailLevel detailLevel) { if (detailLevel == DetailLevel.BASIC) { return basicSummaries.computeIfAbsent(name, (n) -> { if (summaries.containsKey(n)) { throw new IllegalArgumentException("Already registered a non basic summary as " + n); } return new AvgMinMaxCounter(name); }); } else { return summaries.computeIfAbsent(name, (n) -> { if (basicSummaries.containsKey(n)) { throw new IllegalArgumentException("Already registered a basic summary as " + n); } return new AvgMinMaxPercentileCounter(name); }); } } @Override public SummarySet getSummarySet(String name, DetailLevel detailLevel) { if (detailLevel == DetailLevel.BASIC) { return basicSummarySets.computeIfAbsent(name, (n) -> { if (summarySets.containsKey(n)) { throw new IllegalArgumentException("Already registered a non basic summary set as " + n); } return new AvgMinMaxCounterSet(name); }); } else { return summarySets.computeIfAbsent(name, (n) -> { if (basicSummarySets.containsKey(n)) { throw new IllegalArgumentException("Already registered a basic summary set as " + n); } return new AvgMinMaxPercentileCounterSet(name); }); } } void dump(BiConsumer<String, Object> sink) { gauges.forEach((name, metric) -> { Number value = metric.get(); if (value != null) { sink.accept(name, value); } }); counters.values().forEach(metric -> { metric.values().forEach(sink); }); basicSummaries.values().forEach(metric -> { metric.values().forEach(sink); }); summaries.values().forEach(metric -> { metric.values().forEach(sink); }); basicSummarySets.values().forEach(metric -> { metric.values().forEach(sink); }); summarySets.values().forEach(metric -> { metric.values().forEach(sink); }); } void reset() { counters.values().forEach(metric -> { metric.reset(); }); basicSummaries.values().forEach(metric -> { metric.reset(); }); summaries.values().forEach(metric -> { metric.reset(); }); basicSummarySets.values().forEach(metric -> { metric.reset(); }); summarySets.values().forEach(metric -> { metric.reset(); }); // no need to reset gauges } } }
⏎ org/apache/zookeeper/metrics/impl/DefaultMetricsProvider.java
Â
⇒ Apache ZooKeeper Jute Source Code
⇑ Downloading and Reviewing zookeeper.jar
⇑⇑ FAQ for Apache ZooKeeper
2018-10-18, 28883👍, 1💬
Popular Posts:
What JAR files are required to run dom\Writer.java provided in the Apache Xerces package? 3 JAR file...
JDK 11 jdk.charsets.jmod is the JMOD file for JDK 11 Charsets module. JDK 11 Charsets module compile...
Jakarta Regexp is a 100% Pure Java Regular Expression package that was graciously donated to the Apa...
Where to find answers to frequently asked questions on Downloading and Installing Connector/J - JDBC...
JDK 11 jdk.jshell.jmod is the JMOD file for JDK 11 JShell tool, which can be invoked by the "jshell"...