Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
48a425f
Add support for .NET8.0 specific metrics
Oct 7, 2023
2c5afab
fix build
Oct 9, 2023
e9d2292
fix test
Oct 9, 2023
85bb4cf
fix build
Oct 9, 2023
10b9a75
revert api changes
Oct 9, 2023
d48b798
add simple test
Oct 9, 2023
067b84a
Add more tests
Oct 10, 2023
244b43f
changelog
Oct 10, 2023
be07341
fix space
Oct 10, 2023
98e323d
pr feedback
Oct 11, 2023
5c206dd
Merge branch 'main' into vibankwa/add-net8-aspnetcore-metrics
vishweshbankwar Oct 12, 2023
892f5da
Merge branch 'vibankwa/add-net8-aspnetcore-metrics' of https://github…
Oct 12, 2023
43dfa49
Merge branch 'main' into vibankwa/add-net8-aspnetcore-metrics
vishweshbankwar Oct 18, 2023
2c8928c
address feedback
Oct 18, 2023
81be314
Merge branch 'main' into vibankwa/add-net8-aspnetcore-metrics
vishweshbankwar Oct 18, 2023
09546ba
Merge branch 'main' into vibankwa/add-net8-aspnetcore-metrics
vishweshbankwar Oct 19, 2023
f85de21
Update src/OpenTelemetry.Instrumentation.AspNetCore/Implementation/As…
vishweshbankwar Oct 19, 2023
2794531
Update src/OpenTelemetry.Instrumentation.AspNetCore/MeterProviderBuil…
vishweshbankwar Oct 19, 2023
21705e4
Merge branch 'main' into vibankwa/add-net8-aspnetcore-metrics
vishweshbankwar Oct 19, 2023
5da0741
Update src/OpenTelemetry.Instrumentation.AspNetCore/Implementation/As…
vishweshbankwar Oct 19, 2023
7459fff
Merge branch 'main' into vibankwa/add-net8-aspnetcore-metrics
vishweshbankwar Oct 19, 2023
d60250b
test
Oct 19, 2023
4f82317
Merge branch 'vibankwa/add-net8-aspnetcore-metrics' of https://github…
Oct 19, 2023
1649dbb
Merge branch 'main' into vibankwa/add-net8-aspnetcore-metrics
utpilla Oct 20, 2023
8066515
Update src/OpenTelemetry.Instrumentation.AspNetCore/CHANGELOG.md
vishweshbankwar Oct 20, 2023
3b0e27e
add link to docs for metric details
Oct 20, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
pr feedback
  • Loading branch information
Vishwesh Bankwar committed Oct 11, 2023
commit 98e323deb505151deedca6f45a1d66ef1f96a7dd
13 changes: 10 additions & 3 deletions src/OpenTelemetry.Instrumentation.AspNetCore/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
[metrics](https://github.com/open-telemetry/semantic-conventions/blob/2bad9afad58fbd6b33cc683d1ad1f006e35e4a5d/docs/http/http-metrics.md).

* Following metrics will now be enabled by default when targeting
`.NET8.0` framework.
`.NET8.0` or newer framework.

* **Meter** : `Microsoft.AspNetCore.Hosting`
* `http.server.request.duration`
Expand Down Expand Up @@ -65,9 +65,16 @@
* `aspnetcore.rate_limiting.request.time_in_queue`
* `aspnetcore.rate_limiting.requests`

**NOTE**: Users can opt-out of metrics that are not required using
**NOTE**: `OTEL_SEMCONV_STABILITY_OPT_IN` environment variable for these
metrics is not supported. Users can opt-out of metrics that are not required
using
[views](https://github.com/open-telemetry/opentelemetry-dotnet/tree/main/docs/metrics/customizing-the-sdk#view).
[#4934](https://github.com/open-telemetry/opentelemetry-dotnet/pull/4934)
([#4934](https://github.com/open-telemetry/opentelemetry-dotnet/pull/4934))

* Added `network.protocol.name` dimension to `http.server.request.duration`
metric. This change only affects users setting `OTEL_SEMCONV_STABILITY_OPT_IN`
to `http` or `http/dup`.
([#4934](https://github.com/open-telemetry/opentelemetry-dotnet/pull/4934))

## 1.5.1-beta.1

Expand Down