All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.ratis.metrics.dropwizard3.Dm3RatisMetricRegistryImpl Maven / Gradle / Ivy

The newest version!
/*
 * 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.ratis.metrics.dropwizard3;

import org.apache.ratis.metrics.LongCounter;
import org.apache.ratis.metrics.MetricRegistryInfo;
import org.apache.ratis.metrics.RatisMetricRegistry;
import org.apache.ratis.metrics.Timekeeper;
import com.codahale.metrics.ConsoleReporter;
import com.codahale.metrics.Counter;
import com.codahale.metrics.Gauge;
import com.codahale.metrics.Metric;
import com.codahale.metrics.MetricFilter;
import com.codahale.metrics.MetricRegistry;
import com.codahale.metrics.MetricSet;
import com.codahale.metrics.JmxReporter;

import org.apache.ratis.thirdparty.com.google.common.annotations.VisibleForTesting;

import java.util.Map;
import java.util.Objects;
import java.util.SortedMap;
import java.util.concurrent.ConcurrentHashMap;
import java.util.function.Supplier;

/**
 * Custom implementation of {@link MetricRegistry}.
 */
public class Dm3RatisMetricRegistryImpl implements RatisMetricRegistry {
  static Dm3RatisMetricRegistryImpl cast(RatisMetricRegistry registry) {
    if (!(registry instanceof Dm3RatisMetricRegistryImpl)) {
      throw new IllegalStateException("Unexpected class: " + registry.getClass().getName());
    }
    return (Dm3RatisMetricRegistryImpl) registry;
  }

  private final MetricRegistry metricRegistry = new MetricRegistry();

  private final MetricRegistryInfo info;
  private final String namePrefix;
  private final Map metricNameCache = new ConcurrentHashMap<>();

  private JmxReporter jmxReporter;
  private ConsoleReporter consoleReporter;

  public Dm3RatisMetricRegistryImpl(MetricRegistryInfo info) {
    this.info = Objects.requireNonNull(info, "info == null");
    this.namePrefix = MetricRegistry.name(info.getApplicationName(), info.getMetricsComponentName(), info.getPrefix());
  }

  @Override
  public Timekeeper timer(String name) {
    return new Dm3TimekeeperImpl(metricRegistry.timer(getMetricName(name)));
  }

  static LongCounter toLongCounter(Counter c) {
    return new LongCounter() {
      @Override
      public void inc(long n) {
        c.inc(n);
      }

      @Override
      public void dec(long n) {
        c.dec(n);
      }

      @Override
      public long getCount() {
        return c.getCount();
      }
    };
  }

  @Override
  public LongCounter counter(String name) {
    return toLongCounter(metricRegistry.counter(getMetricName(name)));
  }

  @Override
  public boolean remove(String name) {
    return metricRegistry.remove(getMetricName(name));
  }

  static  Gauge toGauge(Supplier supplier) {
    return supplier::get;
  }

  @Override
  public  void gauge(String name, Supplier> gaugeSupplier) {
    metricRegistry.gauge(getMetricName(name), () -> toGauge(gaugeSupplier.get()));
  }

  public SortedMap getGauges(MetricFilter filter) {
    return metricRegistry.getGauges(filter);
  }

  @VisibleForTesting
  public Metric get(String shortName) {
    return metricRegistry.getMetrics().get(getMetricName(shortName));
  }

  private String getMetricName(String shortName) {
    return metricNameCache.computeIfAbsent(shortName, key -> MetricRegistry.name(namePrefix, shortName));
  }

  private  T register(String name, T metric) throws IllegalArgumentException {
    return metricRegistry.register(getMetricName(name), metric);
  }


  public MetricRegistry getDropWizardMetricRegistry() {
    return metricRegistry;
  }

  @Override public MetricRegistryInfo getMetricRegistryInfo(){
    return this.info;
  }

  void registerAll(String prefix, MetricSet metricSet) {
    for (Map.Entry entry : metricSet.getMetrics().entrySet()) {
      if (entry.getValue() instanceof MetricSet) {
        registerAll(prefix + "." + entry.getKey(), (MetricSet) entry.getValue());
      } else {
        register(prefix + "." + entry.getKey(), entry.getValue());
      }
    }
  }

  void setJmxReporter(JmxReporter jmxReporter) {
    this.jmxReporter = jmxReporter;
  }

  JmxReporter getJmxReporter() {
    return this.jmxReporter;
  }

  void setConsoleReporter(ConsoleReporter consoleReporter) {
    this.consoleReporter = consoleReporter;
  }

  ConsoleReporter getConsoleReporter() {
    return this.consoleReporter;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy