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

io.opentelemetry.sdk.metrics.internal.data.ImmutableExponentialHistogramBuckets Maven / Gradle / Ivy

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

package io.opentelemetry.sdk.metrics.internal.data;

import com.google.auto.value.AutoValue;
import io.opentelemetry.sdk.metrics.data.ExponentialHistogramBuckets;
import java.util.List;
import javax.annotation.concurrent.Immutable;

/**
 * Auto value implementation of {@link ExponentialHistogramBuckets}.
 *
 * 

This class is internal and is hence not for public use. Its APIs are unstable and can change * at any time. */ @AutoValue @Immutable public abstract class ImmutableExponentialHistogramBuckets implements ExponentialHistogramBuckets { ImmutableExponentialHistogramBuckets() {} /** * Create a ExponentialHistogramBuckets. * * @return a ExponentialHistogramBuckets. */ @SuppressWarnings("TooManyParameters") public static ExponentialHistogramBuckets create(int scale, int offset, List bucketCounts) { return new AutoValue_ImmutableExponentialHistogramBuckets( scale, offset, bucketCounts, bucketCounts.stream().mapToLong(l -> l).sum()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy