Skip to content

Latest commit

 

History

History
225 lines (159 loc) · 7.95 KB

File metadata and controls

225 lines (159 loc) · 7.95 KB

Changelog

Unreleased

  • Fix issue where when an application has an ExceptionFilter, the exception data wouldn't be collected. (#3475)

  • Added overloads which accept a name to the TracerProviderBuilder AddAspNetCoreInstrumentation extension to allow for more fine-grained options management (#XXXX)

1.0.0-rc9.6

Released 2022-Aug-18

  • Removed netstandard2.0 and netstandard2.1 targets. .NET 5 reached EOL in May 2022 and .NET Core 3.1 reaches EOL in December 2022. The instrumentation for ASP.NET Core now requires .NET 6 or later. (#3567)

  • Fixed an issue where activity started within middleware was modified by instrumentation library. (#3498)

  • Updated to use Activity native support from System.Diagnostics.DiagnosticSource to set activity status. (#3118) (#3555)

1.0.0-rc9.5

Released 2022-Aug-02

  • Fix Remote IP Address - NULL reference exception. (#3481)
  • Metrics instrumentation to correctly populate http.flavor tag. (1.1 instead of HTTP/1.1 etc.) (#3379)
  • Tracing instrumentation to populate http.flavor tag. (#3372)
  • Tracing instrumentation to populate http.scheme tag. (#3392)

1.0.0-rc9.4

Released 2022-Jun-03

  • Added additional metric dimensions. (#3247)
  • Removes net5.0 target as .NET 5.0 is going out of support. The package keeps netstandard2.1 target, so it can still be used with .NET5.0 apps. (#3147)

1.0.0-rc9.3

Released 2022-Apr-15

1.0.0-rc9.2

Released 2022-Apr-12

1.0.0-rc9.1

Released 2022-Mar-30

  • Fix: Http server span status is now unset for 400-499. (#2904)
  • Fix: drop direct reference of the Microsoft.AspNetCore.Http.Features from net5 & net6 targets (already part of the FrameworkReference since the net5). (#2860)
  • Reduce allocations calculating the http.url tag. (#2947)

1.0.0-rc10 (broken. use 1.0.0-rc9.1 and newer)

Released 2022-Mar-04

1.0.0-rc9

Released 2022-Feb-02

1.0.0-rc8

Released 2021-Oct-08

  • Replaced http.path tag on activity with http.target. (#2266)

1.0.0-rc7

Released 2021-Jul-12

1.0.0-rc6

Released 2021-Jun-25

1.0.0-rc5

Released 2021-Jun-09

  • Fixes bug #1740: Instrumentation.AspNetCore for gRPC services omits ALL rpc.* attributes under certain conditions (#1879)

1.0.0-rc4

Released 2021-Apr-23

  • When using OpenTelemetry.Extensions.Hosting you can now bind AspNetCoreInstrumentationOptions from DI. (#1997)

1.0.0-rc3

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. Filter and Enrich are now only called if activity.IsAllDataRequested is true (#1899)

1.0.0-rc2

Released 2021-Jan-29

1.0.0-rc1.1

Released 2020-Nov-17

  • AspNetCoreInstrumentation sets ActivitySource to activities created outside ActivitySource. (#1515)
  • For gRPC invocations, leading forward slash is trimmed from span name in order to conform to the specification. (#1551)

0.8.0-beta.1

Released 2020-Nov-5

  • Record Exception in AspNetCore instrumentation based on RecordException in AspNetCoreInstrumentationOptions (#1408)
  • Added configuration option EnableGrpcAspNetCoreSupport to enable or disable support for adding OpenTelemetry RPC attributes when using Grpc.AspNetCore. This option is enabled by default. (#1423)
  • Renamed TextMapPropagator to TraceContextPropagator, CompositePropagator to CompositeTextMapPropagator. IPropagator is renamed to TextMapPropagator and changed from interface to abstract class. (#1427)
  • Propagators.DefaultTextMapPropagator will be used as the default Propagator (#1427)
  • Removed Propagator from Instrumentation Options. Instrumentation now always respect the Propagator.DefaultTextMapPropagator. (#1448)

0.7.0-beta.1

Released 2020-Oct-16

  • Instrumentation no longer store raw objects like HttpRequest in Activity.CustomProperty. To enrich activity, use the Enrich action on the instrumentation. (#1261)
  • Span Status is populated as per new spec (#1313)

0.6.0-beta.1

Released 2020-Sep-15

  • For gRPC invocations, the grpc.method and grpc.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)

0.5.0-beta.2

Released 2020-08-28

  • Added Filter public API on AspNetCoreInstrumentationOptions to allow filtering of instrumentation based on HttpContext.

  • Asp.Net Core Instrumentation automatically populates HttpRequest, HttpResponse in Activity custom property

  • Changed the default propagation to support W3C Baggage (#1048)

    • The default ITextFormat is now CompositePropagator(TraceContextFormat, BaggageFormat). Baggage sent via the W3C Baggage header will now be parsed and set on incoming Http spans.
  • Introduced support for Grpc.AspNetCore (#803).

    • Attributes are added to gRPC invocations: rpc.system, rpc.service, rpc.method. These attributes are added to an existing span generated by the instrumentation. This is unlike the instrumentation for client-side gRPC calls where one span is created for the gRPC call and a separate span is created for the underlying HTTP call in the event both gRPC and HTTP instrumentation are enabled.
  • Renamed ITextPropagator to IPropagator (#1190)

0.4.0-beta.2

Released 2020-07-24

  • First beta release

0.3.0-beta

Released 2020-07-23

  • Initial release