Released 2024-Dec-09
-
Drop support for .NET 6 as this target is no longer supported. (#2150)
-
Updated OpenTelemetry core component version(s) to
1.10.0
. (#2317)
Released 2024-Jun-17
-
ActivitySource.Version
is set to NuGet package version. (#5498) -
Updated OpenTelemetry core component version(s) to
1.9.0
. (#1888)
Released 2024-Apr-04
Released 2024-Feb-09
-
Breaking Change: Please be advised that the SuppressDownstreamInstrumentation option no longer works when used in conjunction with the
OpenTelemetry.Instrumentation.Http
package version1.6.0
or greater. This is not a result of a change in theOpenTelemetry.Instrumentation.GrpcNetClient
package therefore this also affects versions prior to this release. See this issue for details and workaround. -
Removed support for the
OTEL_SEMCONV_STABILITY_OPT_IN
environment variable which toggled the use of the new conventions for the server, client, and shared network attributes. Now that this suite of attributes are stable, this instrumentation will only emit the new attributes. (#5259) -
Breaking Change: Renamed
GrpcClientInstrumentationOptions
toGrpcClientTraceInstrumentationOptions
. (#5272)
Released 2023-Nov-17
Released 2023-Oct-26
Released 2023-Jul-20
- The new network semantic conventions can be opted in to by setting
the
OTEL_SEMCONV_STABILITY_OPT_IN
environment variable. This allows for a transition period for users to experiment with the new semantic conventions and adapt as necessary. The environment variable supports the following values:http
- emit the new, frozen (proposed for stable) networking attributes, and stop emitting the old experimental networking attributes that the instrumentation emitted previously.http/dup
- emit both the old and the frozen (proposed for stable) networking attributes, allowing for a more seamless transition.- The default behavior (in the absence of one of these values) is to continue
emitting the same network semantic conventions that were emitted in
1.5.0-beta.1
. - Note: this option will eventually be removed after the new network semantic conventions are marked stable. Refer to the specification for more information regarding the new network semantic conventions for spans. (#4658)
Released 2023-Jun-05
- Bumped the package version to
1.5.0-beta.1
to keep its major and minor version in sync with that of the core packages. This would make it more intuitive for users to figure out what version of core packages would work with a given version of this package. The pre-release identifier has also been changed fromrc
tobeta
as we believe this more accurately reflects the status of this package. We believe therc
identifier will be more appropriate as semantic conventions reach stability.
Released 2023-Feb-24
- Updated OTel SDK dependency to 1.4.0
Released 2023-Feb-10
Released 2023-Feb-01
Released 2023-Jan-09
Released 2022-Dec-12
Released 2022-Nov-07
Breaking change The Enrich
callback option has been removed. For better
usability, it has been replaced by two separate options:
EnrichWithHttpRequestMessage
and EnrichWithHttpResponseMessage
. Previously,
the single Enrich
callback required the consumer to detect which event
triggered the callback to be invoked (e.g., request start or response end) and
then cast the object received to the appropriate type: HttpRequestMessage
and HttpResponseMessage
. The separate callbacks make it clear what event
triggers them and there is no longer the need to cast the argument to the
expected type.
(#3804)
Released 2022-Oct-17
Released 2022-Sep-29
- Added overloads which accept a name to the
TracerProviderBuilder
AddGrpcClientInstrumentation
extension to allow for more fine-grained options management (#3665)
Released 2022-Aug-18
- Updated to use Activity native support from
System.Diagnostics.DiagnosticSource
to set activity status. (#3118) (#3569)
Released 2022-Aug-02
Released 2022-Jun-03
- Add
netstandard2.0
target enabling the Grpc.Net.Client instrumentation to be consumed by .NET Framework applications. (#3105)
Released 2022-Apr-15
Released 2022-Apr-12
Released 2022-Mar-30
Released 2022-Mar-04
Released 2022-Feb-02
Released 2021-Oct-08
Released 2021-Jul-12
Released 2021-Jun-25
Released 2021-Jun-09
Released 2021-Apr-23
Released 2021-Mar-19
-
Leverages added AddLegacySource API from OpenTelemetry SDK to trigger Samplers and ActivityProcessors. Samplers, ActivityProcessor.OnStart will now get the Activity before any enrichment done by the instrumentation. (#1836)
-
Performance optimization by leveraging sampling decision and short circuiting activity enrichment. (#1903)
Released 2021-Jan-29
Released 2020-Nov-17
-
Add context propagation, when SuppressDownstreamInstrumentation is enabled. #1464
-
GrpcNetClientInstrumentation sets ActivitySource to activities created outside ActivitySource. (#1515)
Released 2020-Nov-5
Released 2020-Oct-16
-
Instrumentation no longer store raw objects like
HttpRequestMessage
in Activity.CustomProperty. To enrich activity, use the Enrich action on the instrumentation. (#1261) -
Span Status is populated as per new spec (#1313)
Released 2020-Sep-15
- The
grpc.method
andgrpc.status_code
attributes added by the library are removed from the span. The information from these attributes is contained in other attributes that follow the conventions of OpenTelemetry. (#1260)
Released 2020-08-28
-
NuGet package renamed to OpenTelemetry.Instrumentation.GrpcNetClient to more clearly indicate that this package is specifically for gRPC client instrumentation. The package was previously named OpenTelemetry.Instrumentation.Grpc. (#1136)
-
Grpc.Net.Client Instrumentation automatically populates HttpRequest in Activity custom property (#1099) (#1128)
Released 2020-07-24
- First beta release
Released 2020-07-23
- Initial release