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

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

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

package io.opentelemetry.sdk.metrics.data;

import java.util.List;

/**
 * A point data with a {@code double} aggregation value.
 *
 * @since 1.14.0
 */
public interface LongPointData extends PointData {
  /** Returns the value of the data point. */
  long getValue();

  /** List of exemplars collected from measurements aggregated into this point. */
  @Override
  List getExemplars();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy