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

io.opentelemetry.sdk.metrics.ViewBuilder Maven / Gradle / Ivy

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

package io.opentelemetry.sdk.metrics;

import static io.opentelemetry.sdk.metrics.internal.view.AttributesProcessor.setIncludes;

import io.opentelemetry.sdk.common.export.MemoryMode;
import io.opentelemetry.sdk.metrics.internal.SdkMeterProviderUtil;
import io.opentelemetry.sdk.metrics.internal.aggregator.AggregatorFactory;
import io.opentelemetry.sdk.metrics.internal.state.MetricStorage;
import io.opentelemetry.sdk.metrics.internal.view.AttributesProcessor;
import java.util.Objects;
import java.util.Set;
import java.util.function.Predicate;
import javax.annotation.Nullable;

/**
 * A builder for {@link View}.
 *
 * @since 1.14.0
 */
public final class ViewBuilder {

  @Nullable private String name;
  @Nullable private String description;
  private Aggregation aggregation = Aggregation.defaultAggregation();
  private AttributesProcessor processor = AttributesProcessor.noop();
  private int cardinalityLimit = MetricStorage.DEFAULT_MAX_CARDINALITY;

  ViewBuilder() {}

  /**
   * Sets the name of the resulting metric.
   *
   * @param name metric name or {@code null} if the matched instrument name should be used.
   */
  public ViewBuilder setName(String name) {
    this.name = name;
    return this;
  }

  /**
   * Sets the description of the resulting metric.
   *
   * @param description metric description or {@code null} if the matched instrument description
   *     should be used.
   */
  public ViewBuilder setDescription(String description) {
    this.description = description;
    return this;
  }

  /**
   * Sets {@link Aggregation}.
   *
   * @param aggregation aggregation to use.
   */
  public ViewBuilder setAggregation(Aggregation aggregation) {
    if (!(aggregation instanceof AggregatorFactory)) {
      throw new IllegalArgumentException(
          "Custom Aggregation implementations are currently not supported. "
              + "Use one of the standard implementations returned by the static factories in the Aggregation class.");
    }
    this.aggregation = aggregation;
    return this;
  }

  /**
   * Sets a filter which retains attribute keys included in {@code keysToRetain}.
   *
   * @since 1.30.0
   */
  public ViewBuilder setAttributeFilter(Set keysToRetain) {
    Objects.requireNonNull(keysToRetain, "keysToRetain");
    return setAttributeFilter(setIncludes(keysToRetain));
  }

  /**
   * Sets a filter for attributes keys.
   *
   * 

Only attribute keys that pass the supplied {@link Predicate} will be included in the output. * * @param keyFilter filter for attribute keys to include. */ public ViewBuilder setAttributeFilter(Predicate keyFilter) { Objects.requireNonNull(keyFilter, "keyFilter"); this.processor = AttributesProcessor.filterByKeyName(keyFilter); return this; } /** * Add an attribute processor. * *

This method is experimental so not public. You may reflectively call it using {@link * SdkMeterProviderUtil#appendFilteredBaggageAttributes(ViewBuilder, Predicate)}, {@link * SdkMeterProviderUtil#appendAllBaggageAttributes(ViewBuilder)}. * *

Note: not currently stable but additional attribute processors can be configured via {@link * SdkMeterProviderUtil#appendAllBaggageAttributes(ViewBuilder)}. */ @SuppressWarnings("unused") ViewBuilder addAttributesProcessor(AttributesProcessor attributesProcessor) { this.processor = this.processor.then(attributesProcessor); return this; } /** * Set the cardinality limit. * *

This method is experimental so not public. You may reflectively call it using {@link * SdkMeterProviderUtil#setCardinalityLimit(ViewBuilder, int)} * *

Note: not currently stable but cardinality limit can be configured via * SdkMeterProviderUtil#setCardinalityLimit(ViewBuilder, int). * *

Read {@link MemoryMode} to understand the memory usage behavior of reaching cardinality * limit. * * @param cardinalityLimit the maximum number of series for a metric */ ViewBuilder setCardinalityLimit(int cardinalityLimit) { if (cardinalityLimit <= 0) { throw new IllegalArgumentException("cardinalityLimit must be > 0"); } this.cardinalityLimit = cardinalityLimit; return this; } /** Returns a {@link View} with the configuration of this builder. */ public View build() { return View.create(name, description, aggregation, processor, cardinalityLimit); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy