fix(deps): update opentelemetry-rust monorepo to 0.28.0 #154
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.21.0
->0.28.0
0.18.0
->0.28.0
0.10.0
->0.28.0
0.14.0
->0.28.0
0.11.0
->0.28.0
0.13.0
->0.28.0
0.10.0
->0.28.0
0.2.0
->0.28.0
0.21.1
->0.28.0
Release Notes
open-telemetry/opentelemetry-rust (opentelemetry)
v0.28.0
: 0.28.0 ReleaseCompare Source
See changelog for individual crates to know the exact set of changes. All crates in this repo follows same version (0.28.0 for this release).
This release also upgrades
This release introduces several breaking changes as we progress toward a stable version for logs and metrics. We recommend reviewing the Migration Guide along with the changelogs to ensure a smooth upgrade.
v0.27.1
: patch releaseCompare Source
Refer to opentelemetry-sdk CHANGELOG for the changes.
v0.27.0
: 0.27.0 ReleaseCompare Source
See changelog for individual crates to know the exact set of changes. All crates in this repo follows same version (0.27.0 for this release).
This release also upgrades
v0.26.0
: 0.26.0 ReleaseCompare Source
See changelog for individual crates to know the exact set of changes. As informed during previous release, all crates from this repo follows same version (0.26.0 for this release).
This release also upgrades Metric API (part of
opentelemetry
crate) from alpha to beta.v0.25.0
: OpenTelemetry 0.25.0 ReleaseCompare Source
See changelog for individual crates to know the exact set of changes. This release onwards, all crates from this repo follows same version (0.25.0 for today's release).
v0.24.0
Compare Source
See individual crate changelogs for details.
v0.23.0
: 0.23.0Compare Source
Whats changed?
See individual crate changelogs for details.
New Contributors
@svix-jplatte made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1568
@rex4539 made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1587
@divergentdave made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1584
@pyohannes made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1578
@masato-hi made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1621
@rogercoll made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1624
@LuisOsta made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1638
@svrnm made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1664
@Lev1ty made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1672
@ThomsonTan made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1675
@ramgdev made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1585
@utpilla made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1701
@ChieloNewctle made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1746
v0.22.0
Compare Source
API
Added
https://github.com/open-telemetry/opentelemetry-rust/pull/1410 Add experimental synchronous gauge. This is behind the feature flag, and can be enabled by enabling the feature otel_unstable for opentelemetry crate.
https://github.com/open-telemetry/opentelemetry-rust/pull/1410 Guidelines to add new unstable/experimental features.
Changed
Removed
SDK
Deprecated
Added
#1410 Add experimental synchronous gauge
#1471 Configure batch log record processor via
OTEL_BLRP_*
environment variables and viaOtlpLogPipeline::with_batch_config
#1503 Make the documentation for In-Memory exporters visible.
#1526
Performance Improvement : Creating Spans and LogRecords are now faster, by avoiding expensive cloning of
Resource
for every Span/LogRecord.Changed
Breaking
#1313
#1350
Changes how Span links/events are stored to achieve performance gains. See
below for details:
Behavior Change: When enforcing
max_links_per_span
,max_events_per_span
from
SpanLimits
, links/events are kept in the first-come order. The previous"eviction" based approach is no longer performed.
Breaking Change Affecting Exporter authors:
SpanData
now storeslinks
asSpanLinks
instead ofEvictedQueue
whereSpanLinks
is a struct with aVec
of links anddropped_count
.SpanData
now storesevents
asSpanEvents
instead ofEvictedQueue
whereSpanEvents
is a struct with aVec
of events anddropped_count
.Breaking Remove
TextMapCompositePropagator
#1373. UseTextMapCompositePropagator
in opentelemetry API.#1375 Fix metric collections during PeriodicReader shutdown
Breaking #1480 Remove fine grained
BatchConfig
configurations fromBatchLogProcessorBuilder
andBatchSpanProcessorBuilder
. UseBatchConfigBuilder
to construct aBatchConfig
instance and pass it usingBatchLogProcessorBuilder::with_batch_config
orBatchSpanProcessorBuilder::with_batch_config
.Breaking #1480 Remove mutating functions from
BatchConfig
, useBatchConfigBuilder
to construct aBatchConfig
instance.Breaking #1495 Remove Batch LogRecord&Span Processor configuration via non-standard environment variables. Use the following table to migrate from the no longer supported non-standard environment variables to the standard ones.
Breaking 1455 Make the LoggerProvider Owned
Logger
now takes an Owned Logger instead of aWeak<LoggerProviderInner>
LoggerProviderInner
is no longerpub (crate)
Logger.provider()
now returns&LoggerProvider
instead of anOption<LoggerProvider>
1519 Performance improvements
when calling
Counter::add()
andUpDownCounter::add()
with an empty set of attributes(e.g.
counter.Add(5, &[])
)Fixed
open-telemetry/opentelemetry-rust (opentelemetry-otlp)
v0.28.0
Compare Source
Released 2025-Feb-10
opentelemetry
dependency version to 0.28.opentelemetry_sdk
dependency version to 0.28.opentelemetry-http
dependency version to 0.28.opentelemetry-proto
dependency version to 0.28.LogRecord's
event_name()
is now automatically populated on the newly added"event_name" field in LogRecord proto definition.
"reqwest-blocking-client" features as default, to align with the
specification.
2516
opentelemetry_otlp::metrics::MetricsClient
and
MetricExporter::new(..)
method. UseMetricExporter::builder()...build()
to obtainMetricExporter
.export timeout interval configured in below order
OTEL_EXPORTER_OTLP_TRACES_TIMEOUT
,OTEL_EXPORTER_OTLP_LOGS_TIMEOUT
orOTEL_EXPORTER_OTLP_TIMEOUT
.OTEL_EXPORTER_OTLP_TIMEOUT
env variable.with_http().with_timeout()
API method ofLogExporterBuilder
andSpanExporterBuilder
andMetricsExporterBuilder
.v0.27.0
Compare Source
Released 2024-Nov-11
Update
opentelemetry
dependency version to 0.27Update
opentelemetry_sdk
dependency version to 0.27Update
opentelemetry-http
dependency version to 0.27Update
opentelemetry-proto
dependency version to 0.27BREAKING:
(#2217) Replaced: The
MetricsExporterBuilder
interface is modified fromwith_temporality_selector
towith_temporality
example can be seen below:Previous Signature:
Updated Signature:
(#2221) Replaced:
opentelemetry_otlp::new_pipeline().{trace,logging,metrics}()
interface is now replaced with{TracerProvider,SdkMeterProvider,LoggerProvider}::builder()
.opentelemetry_otlp::new_exporter()
interface is now replaced with{SpanExporter,MetricsExporter,LogExporter}::builder()
.Pull request #2221 has a detailed migration guide in the description. See example below,
and basic-otlp for more details:
Previous Signature:
Updated Signature:
Renamed
MetricsExporter
->MetricExporter
MetricsExporterBuilder
->MetricExporterBuilder
#2263
Support
hyper
client for opentelemetry-otlp. This can be enabled using flaghyper-client
.Refer example: https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-otlp/examples/basic-otlp-http
v0.26.0
Compare Source
Released 2024-Sep-30
opentelemetry
dependency version to 0.26opentelemetry_sdk
dependency version to 0.26opentelemetry-http
dependency version to 0.26opentelemetry-proto
dependency version to 0.26v0.25.0
Compare Source
opentelemetry
dependency version to 0.25opentelemetry_sdk
dependency version to 0.25opentelemetry-http
dependency version to 0.25opentelemetry-proto
dependency version to 0.25opentelemetry
crateon major,minor versions.
The logrecord event-name is added as an attribute only if the feature flag
populate-logs-event-name
is enabled. The name of the attribute is changed from"name" to "event.name".
1994,
2050
v0.17.0
Compare Source
"trace", "metrics" and "logs".
OtlpMetricPipeline.build()
no longer invoke theglobal::set_meter_provider
. User who setup the pipeline must do itthemselves using
global::set_meter_provider(meter_provider.clone());
.with_resource
onOtlpLogPipeline
, replacing thewith_config
method.Instead of using
.with_config(Config::default().with_resource(RESOURCE::default()))
users mustnow use
.with_resource(RESOURCE::default())
to configure Resource when usingOtlpLogPipeline
.OtlpTracePipeline::install_simple()
andOtlpTracePipeline::install_batch()
would now returnTracerProvider
instead ofTracer
.These methods would also no longer set the global tracer provider. It would now be the responsibility of users to set it by calling
global::set_tracer_provider(tracer_provider.clone());
. Refer to the basic-otlp and basic-otlp-http examples on how to initialize OTLP Trace Exporter.previous release.
target
fromLogRecord
, if target is populated.LogRecord
andSpan
by their resource and instrumentation scope before exporting, for better efficiency #1873.http
v1 andtonic
v0.12 #1674opentelemetry
dependency version to 0.24opentelemetry_sdk
dependency version to 0.24opentelemetry-http
dependency version to 0.13opentelemetry-proto
dependency version to 0.7v0.16.0
Compare Source
Fixed
OTEL_EXPORTER_OTLP_HEADERS
are now correctly decoded. #1578ExportConfig
#1706/v1/traces
) #1706OTEL_EXPORTER_OTLP_PROTOCOL_DEFAULT
#1746Added
DeltaTemporalitySelector
(#1568)webkpi-roots
features toreqwest
andtonic
backendsChanged
LoggerProvider
instead ofLogger
. Refer to the basic-otlp and basic-otlp-http examples for how to initialize OTLP Log Exporter to use with OpenTelemetryLogBridge and OpenTelemetryTracingBridge respectively.opentelemetry
dependency version to 0.23opentelemetry_sdk
dependency version to 0.23opentelemetry-http
dependency version to 0.12opentelemetry-proto
dependency version to 0.6v0.15.0
Compare Source
Added
Changed
Fixed
tonic()
to the use correct port. #1556Removed
open-telemetry/opentelemetry-rust (opentelemetry-semantic-conventions)
v0.28.0
Compare Source
Released 2025-Feb-10
v0.27.0
Compare Source
Released 2024-Nov-11
v0.26.0
Compare Source
Released 2024-Sep-30
Changed
the semantic conventions.
semconv_experimental
to enable experimental semantic conventions.This feature is disabled by default.
v0.25.0
Compare Source
Changed
opentelemetry
crateon major,minor versions.
#2000
v0.16.0
Compare Source
Changed
opentelemetry_semantic_conventions::trace
andopentelemetry_semantic_conventions::resource
intoopentelemetry_semantic_conventions::attribute
(which now contains all semantic attributes).trace
andresource
now only contain references to attributes which fall under their respective category.Added
opentelemetry_semantic_conventions::metric
to store metric semantic conventions.v0.15.0
Compare Source
Changed
#1596
#1681
v0.14.0
Compare Source
Changed
#1334
open-telemetry/opentelemetry-rust (opentelemetry-stdout)
v0.28.0
Compare Source
Released 2025-Feb-10
opentelemetry
dependency version to 0.28.opentelemetry_sdk
dependency version to 0.28.StartTime
andEndTime
is printed on aggregation (Sum, Gauge, Histogram, ExpoHistogram) with 2 tabs, previously it was on aggregation data point, with 3 tabs, see #2377 and #2411.ordered-float
.LogRecord's
event_name()
is now automatically displayed.v0.27.0
Compare Source
Released 2024-Nov-11
Update
opentelemetry
dependency version to 0.27Update
opentelemetry_sdk
dependency version to 0.27Bump MSRV to 1.70 #2179
BREAKING
MetricsExporterBuilder
interface is modified fromwith_temporality_selector
towith_temporality
example can be seen below:Previous Signature:
MetricsExporter
->MetricExporter
MetricsExporterBuilder
->MetricExporterBuilder
v0.26.0
Compare Source
Released 2024-Sep-30
opentelemetry
dependency version to 0.26opentelemetry_sdk
dependency version to 0.26v0.25.0
Compare Source
opentelemetry
dependency version to 0.25opentelemetry_sdk
dependency version to 0.25opentelemetry
crateon major,minor versions.
key
name
only if the feature flagpopulate-logs-event-name
is enabled.v0.5.0
Compare Source
opentelemetry
dependency version to 0.24opentelemetry_sdk
dependency version to 0.24v0.4.0
Compare Source
Changed
opentelemetry
dependency version to 0.23opentelemetry_sdk
dependency version to 0.23v0.3.0
Compare Source
Changed
chrono
features to reduce number of transitive dependencies. #1569Configuration
📅 Schedule: Branch creation - "* 0-3 1 * *" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.