-
Notifications
You must be signed in to change notification settings - Fork 562
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.28.0/v0.53.0/v0.22.0/v0.8.0/v0.3.0/v0.1.0 #5847
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
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #5847 +/- ##
=====================================
Coverage 64.6% 64.6%
=====================================
Files 202 202
Lines 12591 12591
=====================================
Hits 8134 8134
Misses 4221 4221
Partials 236 236
|
MrAlias
requested review from
dashpole,
MadVikingGod,
yurishkuro,
pellared,
dmathieu and
hanyuancheung
as code owners
July 2, 2024 23:46
1 task
This was referenced Jul 2, 2024
dmathieu
approved these changes
Jul 3, 2024
pellared
reviewed
Jul 3, 2024
pellared
approved these changes
Jul 3, 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.
Review Note:
logtest
.Added
go.opentelemetry.io/contrib/detectors/azure/azurevm
package to provide a resource detector for Azure VMs. (Add a resource detector for Azure VMs #5422)go.opentelemetry.io/contrib/config
add support to configure periodic reader interval and timeout. (config: Add support to configure periodic reader interval and timeout #5661)OTEL_GO_X_DEPRECATED_RUNTIME_METRICS=false
environment variable. (Prepare for migration to new runtime metrics #5747)OTEL_EXPORTER_OTLP_TRACES_PROTOCOL
,OTEL_EXPORTER_OTLP_LOGS_PROTOCOL
,OTEL_EXPORTER_OTLP_METRICS_PROTOCOL
) ingo.opentelemetry.io/contrib/exporters/autoexport
. (exporters/autoexport: add support for signal-specific protocols environment variables #5816)go.opentelemetry.io/contrib/processors/minsev
module is added.This module provides and experimental logging processor with a configurable threshold for the minimum severity records must have to be recorded. (Add the minsev package #5817)
go.opentelemetry.io/contrib/processors/baggagecopy
module.This module is a replacement of
go.opentelemetry.io/contrib/processors/baggage/baggagetrace
. (Replace and deprecatebaggagetrace
#5824)Changed
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc
with the usage ofWithAttributeSet()
instead ofWithAttribute()
. (Use more efficientWithAttributeSet()
#5664)go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp
with the usage ofWithAttributeSet()
instead ofWithAttribute()
. (Use more efficientWithAttributeSet()
#5664)go.opentelemetry.io/contrib/config
to latest released configuration schema which introduces breaking changes whereAttributes
is now amap[string]interface{}
. (config: update schema to v0.2.0 #5758)go.opentelemetry.io/otel/semconv/v1.25.0
togo.opentelemetry.io/otel/semconv/v1.26.0
. (Release v1.28.0/v0.53.0/v0.22.0/v0.8.0/v0.3.0/v0.1.0 #5847)Fixed
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp
are not ignored anymore. (fix: custom attributes are ignored - #5084 #5129)go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace/example
that caused duplicate traces. (Fix otelhttptrace example to avoid duplicating the generated data #5564)response.WriteHeader
call ingo.opentelemetry.io/contrib/instrumentation/net/http/otelhttp
when the response writer is flushed. (Introduce respWriter.Flush so we don't write the status twice #5634)c.FullPath()
method to sethttp.route
attribute ingo.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin
. (otelgin: Usingc.FullPath()
to sethttp.route
attribute #5734)go.opentelemetry.io/contrib/propagators/b3
. (Fix panic caused by invalid spanId with b3 propagator #5754)Deprecated
go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho
package is deprecated.If you would like to become a Code Owner of this module and prevent it from being removed, see #5550. (Deprecate otelecho #5645)
go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron
package is deprecated.If you would like to become a Code Owner of this module and prevent it from being removed, see #5552. (Deprecate otelmacaron #5646)
go.opentelemetry.io/contrib/samplers/aws/xray
package is deprecated.If you would like to become a Code Owner of this module and prevent it from being removed, see #5554. (Deprecate the AWS propagators #5647)
go.opentelemetry.io/contrib/processors/baggage/baggagetrace
package is deprecated.Use the added
go.opentelemetry.io/contrib/processors/baggagecopy
package instead. (Replace and deprecatebaggagetrace
#5824)baggagecopy.NewSpanProcessor
as a replacement forbaggagetrace.New
.NewSpanProcessor
accepts aFitler
function type that selects which baggage members are added to a span.NewSpanProcessor
returns a*baggagecopy.SpanProcessor
instead of atrace.SpanProcessor
interface.The returned type still implements the interface.