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
WithEnv
InstrumentationOption
to configureInstrumentation
to parse the environment. TheInstrumentation
will no longer by default parse the environment. This option needs to be used to enable environment parsing, and the order it is passed influences the environment precedence. All options passed before this one will be overridden if there are conflicts, and those passed after will override the environment. (#417)WithTraceExporter
InstrumentationOption
to configure the traceSpanExporter
used by anInstrumentation
. (#426)net/http
server instrumentation. (#428)WithSampler
method allowing end-users to provide their own implementation of OpenTelemetry sampler directly through the package API. (#468).execDC
in order to instrument SQL DML. (#475)Changed
SYS_PTRACE
capability is needed. (#388)NewInstrumentation
no longer parses environment variables by default. Use the newWithEnv
option to enable environment parsing. (#417)NewInstrumentation
now requires acontext.Context
as its first argument. This context is used in the instantiation of exporters. (#426)Instrumentation
now uses an OTLP over HTTP/protobuf exporter (changed from gRPC/protobuf). (#426)Fixed
GOEXPERIMENT
suffixes. (#389)replace
directives for thegolang.org/x/net
within thegoogle.golang.org/grpc
server instrumentation. (#450)Removed
go.opentelemetry.io/auto/examples/rolldice
module is removed. (#423)