Releases: open-telemetry/opentelemetry-go-instrumentation
Releases · open-telemetry/opentelemetry-go-instrumentation
v0.3.0-alpha
This release has deprecated support for the github.com/gorilla/mux instrumentation.
Added
Changed
- The function signature of
"go.opentelemetry.io/auto/offsets-tracker/downloader".DownloadBinaryhas changed.
It now has an additional flag indicating whether it'll build a dummy app for Go stdlib packages or not. ([#256]#256) - The function signature of
"go.opentelemetry.io/auto/offsets-tracker/target".Newhas changed.
It now accepts a flag to determine if the returnedDatais from the Go stdlib or not. ([#256]#256) - Use UPROBE_RETURN to declare the common uprobe return logic (finding the corresponding context, setting up end time, and sending the event via perf buffer) ([#257]#257)
- BASE_SPAN_PROPERTIES as common fields (start time, end time, SpanContext and ParentSpanContext) for all instrumentations events (consistent between C and Go structs). ([#257]#257)
- Header guards in eBPF code. ([#257]#257)
Fixed
- Fix context propagation across different goroutines. (#118)
- The offset tracker can once again build binaries for the Go stdlib. ([#256]#256)
Deprecated
- The
go.opentelemetry.io/auto/offsets-trackermodule is deprecated.
It will be removed in the following release. (#281) - The
go.opentelemetry.io/auto/pkg/instrumentors/bpf/github.com/gorilla/muxpackage is deprecated.
It will be removed in the following release. (#262) - The
go.opentelemetry.io/auto/test/e2e/gorillamuxmodule is deprecated.
It will be removed in the following release. (#262) - The
go.opentelemetry.io/auto/pkg/injectpackage is deprecated.
It will be removed in the following release. (#282) - The
go.opentelemetry.io/auto/pkg/errorspackage is deprecated.
It will be removed in the following release. (#282) - The
go.opentelemetry.io/auto/pkg/processpackage is deprecated.
It will be removed in the following release. (#282) - The
go.opentelemetry.io/auto/pkg/process/ptracepackage is deprecated.
It will be removed in the following release. (#282) - The
go.opentelemetry.io/auto/pkg/opentelemetrypackage is deprecated.
It will be removed in the following release. (#282) - The
go.opentelemetry.io/auto/pkg/instrumentors/bpf/net/http/clientpackage is deprecated.
It will be removed in the following release. (#282) - The
go.opentelemetry.io/auto/pkg/instrumentors/bpf/net/http/serverpackage is deprecated.
It will be removed in the following release. (#282) - The
go.opentelemetry.io/auto/pkg/instrumentors/bpf/github.com/gin-gonic/ginpackage is deprecated.
It will be removed in the following release. (#282) - The
go.opentelemetry.io/auto/pkg/instrumentors/bpf/github.com/gorilla/muxpackage is deprecated.
It will be removed in the following release. (#282) - The
go.opentelemetry.io/auto/pkg/instrumentors/bpf/google/golang/org/grpcpackage is deprecated.
It will be removed in the following release. (#282) - The
go.opentelemetry.io/auto/pkg/instrumentors/bpf/google/golang/org/grpc/serverpackage is deprecated.
It will be removed in the following release. (#282) - The
go.opentelemetry.io/auto/pkg/instrumentors/utilspackage is deprecated.
It will be removed in the following release. (#282) - The
go.opentelemetry.io/auto/pkg/instrumentors/contextpackage is deprecated.
It will be removed in the following release. (#282) - The
go.opentelemetry.io/auto/pkg/instrumentorspackage is deprecated.
It will be removed in the following release. (#282) - The
go.opentelemetry.io/auto/pkg/instrumentors/allocatorpackage is deprecated.
It will be removed in the following release. (#282) - The
go.opentelemetry.io/auto/pkg/instrumentors/bpffspackage is deprecated.
It will be removed in the following release. (#282) - The
go.opentelemetry.io/auto/pkg/instrumentors/eventspackage is deprecated.
It will be removed in the following release. (#282) - The
go.opentelemetry.io/auto/pkg/logpackage is deprecated.
It will be removed in the following release. (#282) - The
go.opentelemetry.io/auto/test/e2e/ginmodule is deprecated.
It will be removed in the following release. (#282) - The
go.opentelemetry.io/auto/test/e2e/gorillamuxmodule is deprecated.
It will be removed in the following release. (#282) - The
go.opentelemetry.io/auto/test/e2e/nethttpmodule is deprecated.
It will be removed in the following release. (#282)
New Contributors
Full Changelog: v0.2.2-alpha...v0.3.0-alpha
v0.2.2-alpha
Added
- The
net/httpclient instrumentor. (#91) - Context propagation to the
net/httpserver instrumentation. (#92) - Simplified example of an HTTP service in
go.opentelemtry.io/auto/examples/rolldice. (#195)
Changed
- Upgrade OpenTelemetry semantic conventions to v1.18.0. (#162)
- Remove the HTTP path from span names in
net/http,gin-gonic/gin, andgorilla/muxinstrumentations. (#161) - Update generated offsets. (#186)
New Contributors
- @oxeye-gal made their first contribution in #92
- @dineshg13 made their first contribution in #195
Full Changelog: v0.2.1-alpha...v0.2.2-alpha
v0.2.1-alpha
What's Changed
Fixed
- Fix gRPC instrumentation memory access issue on newer kernels. (#150)
- Fix missing spans in gorillamux instrumentation. (#86)
Changed
- Update HTTP span names to include method and route to match semantic conventions. (#143)
- Add DockerHub to release destinations. (#152)
New Contributors
- @tanghengjian made their first contribution in #149
- @rogercoll made their first contribution in #156
Full Changelog: v0.2.0-alpha...v0.2.1-alpha
v0.2.0-alpha
What's Changed
Added
- Add gin-gonic/gin instrumentation. (#100)
- Add ARM64 support. (#82)
- Add
OTEL_GO_AUTO_SHOW_VERIFIER_LOGenvironment variable to control whether the verifier log is shown. (#128)
Changed
- Use verion spans in
offsets_results.jsoninstead of storing each version. (#45) - Change
OTEL_TARGET_EXEenvironment variable toOTEL_GO_AUTO_TARGET_EXE. (#97)
New Contributors
- @robbkidd made their first contribution in #95
- @pellared made their first contribution in #97
- @MikeGoldsmith made their first contribution in #100
- @JamieDanielson made their first contribution in #129
- @arminru made their first contribution in #133
Full Changelog: v0.1.0-alpha...v0.2.0-alpha
v0.1.0-alpha
This is the first release of OpenTelemetry Go auto-instrumentation.