Skip to content

Commit

Permalink
Move the link about HttpClientFactory in RC1 notes (#9498)
Browse files Browse the repository at this point in the history
* Move the link about HttpClientFactory in RC1 notes

* Update link
  • Loading branch information
MihaZupan authored Sep 11, 2024
1 parent f5ac15e commit d154ea0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions release-notes/9.0/preview/rc1/libraries.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,8 @@ services.AddHttpClient("myClient")
.RedactLoggedHeaders(name => name != "User-Agent");
```

See the [documentation](https://learn.microsoft.com/dotnet/core/compatibility/networking/9.0/redact-headers) for detailed breaking change guidance.

## Out-of-proc Meter wildcard listening

It is already possible to listen to meters out-of-process using the `System.Diagnostics.Metrics` event source provider, but the current implementation requires specifying the full meter name. [This update](https://github.com/dotnet/runtime/pull/105581) introduces support for listening to all meters by using the wildcard character `*`, allowing you to capture metrics from every meter in a process. Additionally, it adds support for listening by meter prefix, so you can listen to all meters whose names start with a specified prefix. For example, using `MyMeter*` will enable listening to all meters with names beginning with `MyMeter`.
Expand Down Expand Up @@ -224,7 +226,5 @@ Monitoring tools like [dotnet-counters](https://learn.microsoft.com/dotnet/core/

---

See the [documentation](https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/9.0/redact-headers.md) for detailed breaking change guidance.

* [Support listening to meters out-of-proc using a wildcard](https://github.com/dotnet/runtime/pull/105581)
* [Add `JsonEnumMemberNameAttribute`](https://github.com/dotnet/runtime/pull/105032)

0 comments on commit d154ea0

Please sign in to comment.