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

io.opentelemetry.sdk.metrics.data.AggregationTemporality Maven / Gradle / Ivy

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

package io.opentelemetry.sdk.metrics.data;

/**
 * Describes the time period over which measurements are aggregated.
 *
 * @since 1.14.0
 */
public enum AggregationTemporality {
  /** Measurements are aggregated since the previous collection. */
  DELTA,
  /** Measurements are aggregated over the lifetime of the instrument. */
  CUMULATIVE
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy