io.quarkus.websockets.next.TelemetryConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-websockets-next Show documentation
Show all versions of quarkus-websockets-next Show documentation
Implementation of the WebSocket API with enhanced efficiency and usability
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