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

io.quarkus.websockets.next.TelemetryConfig Maven / Gradle / Ivy

There is a newer version: 3.17.2
Show newest version
package io.quarkus.websockets.next;

import io.smallrye.config.WithDefault;
import io.smallrye.config.WithName;

/**
 * Configures telemetry in the WebSockets extension.
 */
public interface TelemetryConfig {

    /**
     * If collection of WebSocket traces is enabled.
     * Only applicable when the OpenTelemetry extension is present.
     */
    @WithName("traces.enabled")
    @WithDefault("true")
    boolean tracesEnabled();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy