Interface OtlpExporterRuntimeConfig
-
@ConfigMapping(prefix="quarkus.otel.exporter.otlp") @ConfigRoot(phase=RUN_TIME) public interface OtlpExporterRuntimeConfig
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_GRPC_BASE_URIstatic StringDEFAULT_HTTP_BASE_URIstatic StringDEFAULT_TIMEOUT_SECS
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Optional<String>endpoint()Sets the OTLP endpoint to connect to.OtlpExporterTracesConfigtraces()OTLP traces exporter configuration.
-
-
-
Field Detail
-
DEFAULT_GRPC_BASE_URI
static final String DEFAULT_GRPC_BASE_URI
- See Also:
- Constant Field Values
-
DEFAULT_HTTP_BASE_URI
static final String DEFAULT_HTTP_BASE_URI
- See Also:
- Constant Field Values
-
DEFAULT_TIMEOUT_SECS
static final String DEFAULT_TIMEOUT_SECS
- See Also:
- Constant Field Values
-
-
Method Detail
-
endpoint
@WithDefault("http://localhost:4317/") Optional<String> endpoint()Sets the OTLP endpoint to connect to. If unset, defaults to "http://localhost:4317/". We are currently using just the traces, thereforequarkus.otel.exporter.otlp.traces.endpointis recommended.
-
traces
OtlpExporterTracesConfig traces()
OTLP traces exporter configuration.
-
-