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

org.apache.rocketmq.shaded.io.opentelemetry.sdk.metrics.export.MetricReader Maven / Gradle / Ivy

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

package org.apache.rocketmq.shaded.io.opentelemetry.sdk.metrics.export;

import org.apache.rocketmq.shaded.io.opentelemetry.sdk.common.CompletableResultCode;
import org.apache.rocketmq.shaded.io.opentelemetry.sdk.metrics.SdkMeterProvider;
import java.util.Collection;

/**
 * A reader of metrics from {@link SdkMeterProvider}.
 *
 * 

Custom implementations of {@link MetricReader} are not currently supported. Please use one of * the built-in readers such as {@link PeriodicMetricReader}. */ public interface MetricReader extends AggregationTemporalitySelector { /** * Called by {@link SdkMeterProvider} and supplies the {@link MetricReader} with a handle to * collect metrics. * *

{@link CollectionRegistration} is currently an empty interface because custom * implementations of {@link MetricReader} are not currently supported. */ void register(CollectionRegistration registration); /** * Flushes metrics read by this reader. * *

In all scenarios, the trigger a metrics collection. * *

For readers associated with push {@link MetricExporter}s, this should {@link * MetricExporter#export(Collection)} the collected metrics. * * @return the result of the flush. */ CompletableResultCode forceFlush(); /** * Shuts down the metric reader. * *

For pull endpoints, like prometheus, this should shut down the metric hosting endpoint or * server doing such a job. * *

For push endpoints, this should shut down any scheduler threads. * * @return the result of the shutdown. */ CompletableResultCode shutdown(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy