Interface OtlpExporterMetricsConfig
- All Superinterfaces:
OtlpExporterConfig
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.quarkus.opentelemetry.runtime.config.runtime.exporter.OtlpExporterConfig
OtlpExporterConfig.KeyCert, OtlpExporterConfig.Protocol, OtlpExporterConfig.ProxyConfig, OtlpExporterConfig.TrustCert -
Field Summary
Fields inherited from interface io.quarkus.opentelemetry.runtime.config.runtime.exporter.OtlpExporterConfig
DEFAULT_GRPC_BASE_URI, DEFAULT_HTTP_BASE_URI, DEFAULT_TIMEOUT_SECS -
Method Summary
Modifier and TypeMethodDescriptionThe preferred default histogram aggregation.The preferred output aggregation temporality.Methods inherited from interface io.quarkus.opentelemetry.runtime.config.runtime.exporter.OtlpExporterConfig
compression, endpoint, headers, keyCert, protocol, proxyOptions, timeout, tlsConfigurationName, trustCert
-
Method Details
-
temporalityPreference
The preferred output aggregation temporality. Options include DELTA, LOWMEMORY, and CUMULATIVE.If CUMULATIVE, all instruments will have cumulative temporality. If DELTA, counter (sync and async) and histograms will be delta, up down counters (sync and async) will be cumulative. If LOWMEMORY, sync counter and histograms will be delta, async counter and up down counters (sync and async) will be cumulative.
Default is CUMULATIVE.
-
defaultHistogramAggregation
The preferred default histogram aggregation.Options include BASE2_EXPONENTIAL_BUCKET_HISTOGRAM and EXPLICIT_BUCKET_HISTOGRAM.
Default is EXPLICIT_BUCKET_HISTOGRAM.
-