-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release v1.32.0/v0.54.0/v0.8.0/v0.0.11 #5960
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pellared
added
the
Unlock Released Changelog
PRs that need to change released section in CHANGELOG.md
label
Nov 8, 2024
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #5960 +/- ##
=====================================
Coverage 84.6% 84.6%
=====================================
Files 272 272
Lines 22896 22896
=====================================
+ Hits 19387 19389 +2
+ Misses 3165 3163 -2
Partials 344 344 |
pellared
requested review from
MrAlias,
XSAM,
dashpole and
dmathieu
as code owners
November 8, 2024 10:13
dmathieu
approved these changes
Nov 8, 2024
MrAlias
reviewed
Nov 8, 2024
Co-authored-by: Tyler Yahn <[email protected]>
MrAlias
approved these changes
Nov 8, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Added
go.opentelemetry.io/otel/sdk/metric/exemplar.AlwaysOffFilter
, which can be used to disable exemplar recording. (Allow configuring the exemplar filter on the metrics SDK #5850)go.opentelemetry.io/otel/sdk/metric.WithExemplarFilter
, which can be used to configure the exemplar filter used by the metrics SDK. (Allow configuring the exemplar filter on the metrics SDK #5850)ExemplarReservoirProviderSelector
andDefaultExemplarReservoirProviderSelector
togo.opentelemetry.io/otel/sdk/metric
, which defines the exemplar reservoir to use based on the aggregation of the metric. (Add selector of exemplar reservoir providers to metric.Stream configuration #5861)ExemplarReservoirProviderSelector
togo.opentelemetry.io/otel/sdk/metric.Stream
to allow using views to configure the exemplar reservoir to use for a metric. (Add selector of exemplar reservoir providers to metric.Stream configuration #5861)ReservoirProvider
,HistogramReservoirProvider
andFixedSizeReservoirProvider
togo.opentelemetry.io/otel/sdk/metric/exemplar
to make it convenient to use providers of Reservoirs. (Add selector of exemplar reservoir providers to metric.Stream configuration #5861)go.opentelemetry.io/otel/semconv/v1.27.0
package.The package contains semantic conventions from the
v1.27.0
version of the OpenTelemetry Semantic Conventions. (Generatesemconv/v1.27.0
#5894)Attributes attribute.Set
field toScope
ingo.opentelemetry.io/otel/sdk/instrumentation
. (sdk/instrumentation: Add Attributes to Scope #5903)Attributes attribute.Set
field toScopeRecords
ingo.opentelemetry.io/otel/log/logtest
. (log/logtest: Add Attributes to ScopeRecords #5927)go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc
adds instrumentation scope attributes. (otlptrace: Add instrumentation scope attributes #5934)go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp
adds instrumentation scope attributes. (otlptrace: Add instrumentation scope attributes #5934)go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc
adds instrumentation scope attributes. (otlpmetric: Add instrumentation scope attributes #5935)go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp
adds instrumentation scope attributes. (otlpmetric: Add instrumentation scope attributes #5935)go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc
adds instrumentation scope attributes. (otlplog: Add instrumentation scope attributes #5933)go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp
adds instrumentation scope attributes. (otlplog: Add instrumentation scope attributes #5933)go.opentelemetry.io/otel/exporters/prometheus
adds instrumentation scope attributes inotel_scope_info
metric as labels. (prometheus: Add instrumentation scope attributes to otel_scope_info #5932)Changed
Tracer
ingo.opentelemetry.io/otel
andgo.opentelemetry.io/otel/sdk/trace
. (Make scope attributes as identifying for Tracer #5924)Meter
ingo.opentelemetry.io/otel
andgo.opentelemetry.io/otel/sdk/metric
. (Make scope attributes as identifying for Meter #5926)Logger
ingo.opentelemetry.io/otel
andgo.opentelemetry.io/otel/sdk/log
. (Make scope attributes as identifying for Logger #5925)Tracer
ingo.opentelemetry.io/otel/bridge/opentracing
. (opentracing: Make schemaURL and scope attributes as identifying for Tracer #5931)go.opentelemetry.io/otel/sdk/metric
andgo.opentelemetry.io/otel/sdk/trace
. (Allow GC to collect unneeded slice elements #5804)Fixed
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc
now keeps the metadata already present in the context whenWithHeaders
is used. (otlpmetricgrpc: Keep metadata for gRPC in context #5892)go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc
now keeps the metadata already present in the context whenWithHeaders
is used. (Keep metadata for gRPC in context for log signal #5911)go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc
now keeps the metadata already present in the context whenWithHeaders
is used. (Allow additional context to be added when WithHeaders is used in OTLP gRPC traces exporter #5915)go.opentelemetry.io/otel/exporters/prometheus
trying to add exemplars to Gauge metrics, which is unsupported. (Fix exemplars being added to gauge metrics in the prometheus exporter #5912)WithEndpointURL
to always use a secure connection when an https URL is passed ingo.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc
. (Override insecure when endpoint URL is set #5944)WithEndpointURL
to always use a secure connection when an https URL is passed ingo.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp
. (Override insecure when endpoint URL is set #5944)WithEndpointURL
to always use a secure connection when an https URL is passed ingo.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc
. (Override insecure when endpoint URL is set #5944)WithEndpointURL
to always use a secure connection when an https URL is passed ingo.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp
. (Override insecure when endpoint URL is set #5944)go.opentelemetry.io/otel/sdk/metric
. (Fix incorrect metrics getting generated from multiple readers #5900)Removed
go.opentelemetry.io/otel/example
as they are moved to Contrib repository. (Remove examples #5930)