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

io.opentelemetry.api.incubator.trace.ExtendedTracer Maven / Gradle / Ivy

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

package io.opentelemetry.api.incubator.trace;

import io.opentelemetry.api.trace.Tracer;

/** Extended {@link Tracer} with experimental APIs. */
public interface ExtendedTracer extends Tracer {

  /**
   * Returns {@code true} if the tracer is enabled.
   *
   * 

This allows callers to avoid unnecessary compute when nothing is consuming the data. Because * the response is subject to change over the application, callers should call this before each * call to {@link #spanBuilder(String)}. */ default boolean isEnabled() { return true; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy