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

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

There is a newer version: 1.42.1
Show newest version
/*
 * Copyright The OpenTelemetry Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package io.opentelemetry.sdk.metrics.data;

import javax.annotation.concurrent.Immutable;

/**
 * A quantile value within a {@link SummaryPointData}.
 *
 * @since 1.14.0
 */
@Immutable
public interface ValueAtQuantile {
  /** Returns the quantile of a distribution. Must be in the interval [0.0, 1.0]. */
  double getQuantile();

  /** Returns the value at the given quantile of a distribution. */
  double getValue();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy