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

io.opentelemetry.instrumentation.jmx.engine.MetricConfiguration Maven / Gradle / Ivy

/*
 * Copyright The OpenTelemetry Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package io.opentelemetry.instrumentation.jmx.engine;

import java.util.ArrayList;
import java.util.Collection;

/**
 * A class responsible for maintaining the current configuration for JMX metrics to be collected.
 */
public class MetricConfiguration {

  private final Collection currentSet = new ArrayList<>();

  public MetricConfiguration() {}

  public boolean isEmpty() {
    return currentSet.isEmpty();
  }

  public void addMetricDef(MetricDef def) {
    currentSet.add(def);
  }

  Collection getMetricDefs() {
    return currentSet;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy