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

io.opentelemetry.sdk.metrics.internal.view.LastValueAggregation Maven / Gradle / Ivy

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

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

import io.opentelemetry.sdk.common.Clock;
import io.opentelemetry.sdk.common.export.MemoryMode;
import io.opentelemetry.sdk.internal.RandomSupplier;
import io.opentelemetry.sdk.metrics.Aggregation;
import io.opentelemetry.sdk.metrics.InstrumentType;
import io.opentelemetry.sdk.metrics.data.DoubleExemplarData;
import io.opentelemetry.sdk.metrics.data.ExemplarData;
import io.opentelemetry.sdk.metrics.data.LongExemplarData;
import io.opentelemetry.sdk.metrics.data.PointData;
import io.opentelemetry.sdk.metrics.internal.aggregator.Aggregator;
import io.opentelemetry.sdk.metrics.internal.aggregator.AggregatorFactory;
import io.opentelemetry.sdk.metrics.internal.aggregator.DoubleLastValueAggregator;
import io.opentelemetry.sdk.metrics.internal.aggregator.LongLastValueAggregator;
import io.opentelemetry.sdk.metrics.internal.descriptor.InstrumentDescriptor;
import io.opentelemetry.sdk.metrics.internal.exemplar.ExemplarFilter;
import io.opentelemetry.sdk.metrics.internal.exemplar.ExemplarReservoir;
import java.util.function.Supplier;

/**
 * Last-value aggregation configuration.
 *
 * 

This class is internal and is hence not for public use. Its APIs are unstable and can change * at any time. */ public final class LastValueAggregation implements Aggregation, AggregatorFactory { private static final Aggregation INSTANCE = new LastValueAggregation(); public static Aggregation getInstance() { return INSTANCE; } private LastValueAggregation() {} @Override @SuppressWarnings("unchecked") public Aggregator createAggregator( InstrumentDescriptor instrumentDescriptor, ExemplarFilter exemplarFilter, MemoryMode memoryMode) { // For the initial version we do not sample exemplars on gauges. switch (instrumentDescriptor.getValueType()) { case LONG: { Supplier> reservoirFactory = () -> ExemplarReservoir.filtered( exemplarFilter, ExemplarReservoir.longFixedSizeReservoir( Clock.getDefault(), Runtime.getRuntime().availableProcessors(), RandomSupplier.platformDefault())); return (Aggregator) new LongLastValueAggregator(reservoirFactory, memoryMode); } case DOUBLE: { Supplier> reservoirFactory = () -> ExemplarReservoir.filtered( exemplarFilter, ExemplarReservoir.doubleFixedSizeReservoir( Clock.getDefault(), Runtime.getRuntime().availableProcessors(), RandomSupplier.platformDefault())); return (Aggregator) new DoubleLastValueAggregator(reservoirFactory, memoryMode); } } throw new IllegalArgumentException("Invalid instrument value type"); } @Override public boolean isCompatibleWithInstrument(InstrumentDescriptor instrumentDescriptor) { InstrumentType instrumentType = instrumentDescriptor.getType(); return instrumentType == InstrumentType.OBSERVABLE_GAUGE || instrumentType == InstrumentType.GAUGE; } @Override public String toString() { return "LastValueAggregation"; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy