Skip to content

Latest commit

 

History

History
325 lines (223 loc) · 11.3 KB

File metadata and controls

325 lines (223 loc) · 11.3 KB

Changelog

Unreleased

1.9.0-beta.1

Released 2024-Jun-18

1.8.0-beta.3

Released 2024-May-23

  • Breaking change The Enrich callback option has been removed. For better usability, it has been replaced by three separate options: EnrichWithHttpRequest, EnrichWithHttpResponse and EnrichWithException. Previously, the single Enrich callback required the consumer to detect which event triggered the callback to be invoked (e.g., request start, response end, or an exception) and then cast the object received to the appropriate type: HttpRequest, HttpResponse, or Exception. 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. (#1824)

1.8.0-beta.2

Released 2024-Apr-17

  • Breaking Change: Fixed tracing instrumentation so that by default any values detected in the query string component of requests are replaced with the text Redacted when building the url.query attribute. For example, ?key1=value1&key2=value2 becomes ?key1=Redacted&key2=Redacted. You can disable this redaction by setting the environment variable OTEL_DOTNET_EXPERIMENTAL_ASPNET_DISABLE_URL_QUERY_REDACTION to true. (#1656)

1.8.0-beta.1

Released 2024-Apr-05

  • Breaking Change: Renamed AspNetInstrumentationOptions to AspNetTraceInstrumentationOptions. (#1604)
  • Breaking Change: server.address and server.port no longer added for http.server.request.duration metric. (#1606)
  • Breaking change Spans names and attributes will be set as per HTTP semantic convention v1.24.0:
    • span names follows: {HTTP method} [route name if available] pattern
    • error.type added when exception occurred while processing request,
    • http.request.method replaces http.method,
    • http.request.method_original added when http.request.method is not in canonical form,
    • http.response.status_code replaces http.status_code,
    • network.protocol.version added with HTTP version value,
    • server.address and server.port replace http.host,
    • url.path replaces http.target,
    • url.query added when query url part is not empty,
    • url.scheme added with http or https value,
    • user_agent.original replaces http.user_agent. (#1607)
  • ActivitySource.Version is set to NuGet package version. (#1624)

1.7.0-beta.2

Released 2024-Feb-07

  • Fix description for http.server.request.duration metric. (#1538)

1.7.0-beta.1

Released 2023-Dec-20

  • Added enrich functionality to metric instrumentation (#1407).

    • New overload of AddAspNetInstrumentation now accepts a configuration delegate.
    • The Enrich can be used to add additional metric attributes.
  • BREAKING: HTTP server metrics now follow stable semantic conventions (#1429).

    • New metric: http.server.request.duration
      • Unit: s (seconds)
      • Histogram Buckets: 0.005, 0.01, 0.025, 0.05, 0.075, 0.1, 0.25, 0.5, 0.75, 1, 2.5, 5, 7.5, 10
    • Old metric: http.server.duration
      • Unit: ms (milliseconds)
      • Histogram Buckets: 0, 5, 10, 25, 50, 75, 100, 250, 500, 750, 1000, 2500, 5000, 7500, 10000

    Note that the bucket changes are part of the 1.7.0-rc.1 release of the OpenTelemetry SDK.

    The following metric attributes has been added:

    • http.request.method (previously http.method)
    • http.response.status_code (previously http.status_code)
    • url.scheme (previously http.scheme)
    • server.address
    • server.port
    • network.protocol.version (1.1, 2, 3)
    • http.route

1.6.0-beta.2

Released 2023-Nov-06

  • Fixed an issue that caused http.server.duration metric value to always be set to 0. The issue exists in 1.6.0-beta.1 version. (#1425)

1.6.0-beta.1

Released 2023-Oct-11

  • Updated OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModule dependency to 1.6.0-beta.1 which brings in the following changes.:

    • Fixed an issue where activities were stopped incorrectly before processing completed. Activity processor's OnEnd will now happen after AspNetInstrumentationOptions.Enrich. (#1388)
    • Update OpenTelemetry.Api to 1.6.0. (#1344)

1.0.0-rc9.9

Released 2023-Jun-09

  • Release together with OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModule due to update OpenTelemetry.Api to 1.5.0. (#1220)

1.0.0-rc9.8

Released 2023-Feb-27

  • Removes AddAspNetInstrumentation method with default configure parameter. (#942)

1.0.0-rc9.7

Released 2022-Nov-28

1.0.0-rc9.6

Released 2022-Sep-28

  • Migrate to native Activity Status and StatusDescription. (#651)

1.0.0-rc9.5 (source code moved to contrib repo)

Released 2022-Jun-21

  • From this version onwards, the source code for this package would be hosted in the contrib repo. The source code for this package before this version was hosted on the main repo.

1.0.0-rc9.4

Released 2022-Jun-03

1.0.0-rc9.3

Released 2022-Apr-15

  • Removes .NET Framework 4.6.1. The minimum .NET Framework version supported is .NET 4.6.2. (#3190)

1.0.0-rc9.2

Released 2022-Apr-12

1.0.0-rc9.1

Released 2022-Mar-30

  • Added ASP.NET metrics instrumentation to collect http.server.duration. (#2985)

  • Fix: Http server span status is now unset for 400-499. (#2904)

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

1.0.0-rc7

Released 2021-Jul-12

1.0.0-rc6

Released 2021-Jun-25

1.0.0-rc5

Released 2021-Jun-09

1.0.0-rc4

Released 2021-Apr-23

  • Sanitize http.url attribute. (#1961)

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. (#1903)

1.0.0-rc2

Released 2021-Jan-29

1.0.0-rc1.1

Released 2020-Nov-17

  • AspNetInstrumentation sets ActivitySource to activities created outside ActivitySource. (#1515)

0.8.0-beta.1

Released 2020-Nov-5

  • 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

0.5.0-beta.2

Released 2020-08-28

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

  • Asp.Net 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.
  • 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