From bceffd0a682e5cb11ee4039e88b311333238afc0 Mon Sep 17 00:00:00 2001 From: Daniel Espinosa Date: Wed, 26 Jun 2024 13:15:43 -0700 Subject: [PATCH 1/4] added link to the HttpTelemetry Event Source --- docs/core/diagnostics/available-counters.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/diagnostics/available-counters.md b/docs/core/diagnostics/available-counters.md index 6dbfa1d7a6da8..31163276bbe2b 100644 --- a/docs/core/diagnostics/available-counters.md +++ b/docs/core/diagnostics/available-counters.md @@ -83,7 +83,7 @@ The following counters are published as part of the [ASP.NET Core Kestrel web se ## System.Net.Http counters -The following counters are published by the HTTP stack. +The following counters are published by the HTTP stack and are mantained in [`HttpTelemetry.AnyOS.cs`](https://github.com/dotnet/runtime/blob/main/src/libraries/System.Net.Http/src/System/Net/Http/HttpTelemetry.AnyOS.cs) | Counter | Description | First available in | |--|--|--| From b4c13e8e0a81755abbfdf0be9c9d6c9dfaf549de Mon Sep 17 00:00:00 2001 From: Daniel Espinosa Date: Wed, 26 Jun 2024 13:16:30 -0700 Subject: [PATCH 2/4] added period at the end of the sentence --- docs/core/diagnostics/available-counters.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/diagnostics/available-counters.md b/docs/core/diagnostics/available-counters.md index 31163276bbe2b..93450117c75b0 100644 --- a/docs/core/diagnostics/available-counters.md +++ b/docs/core/diagnostics/available-counters.md @@ -83,7 +83,7 @@ The following counters are published as part of the [ASP.NET Core Kestrel web se ## System.Net.Http counters -The following counters are published by the HTTP stack and are mantained in [`HttpTelemetry.AnyOS.cs`](https://github.com/dotnet/runtime/blob/main/src/libraries/System.Net.Http/src/System/Net/Http/HttpTelemetry.AnyOS.cs) +The following counters are published by the HTTP stack and are mantained in [`HttpTelemetry.AnyOS.cs`](https://github.com/dotnet/runtime/blob/main/src/libraries/System.Net.Http/src/System/Net/Http/HttpTelemetry.AnyOS.cs). | Counter | Description | First available in | |--|--|--| From ada6bd167c6acb87f3a0e22bc5783edb19b9239a Mon Sep 17 00:00:00 2001 From: Dan Espinosa <30415120+danespinosa@users.noreply.github.com> Date: Fri, 28 Jun 2024 15:24:00 -0700 Subject: [PATCH 3/4] Update docs/core/diagnostics/available-counters.md Italicize link Co-authored-by: David Pine --- docs/core/diagnostics/available-counters.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/diagnostics/available-counters.md b/docs/core/diagnostics/available-counters.md index 93450117c75b0..460556e28b024 100644 --- a/docs/core/diagnostics/available-counters.md +++ b/docs/core/diagnostics/available-counters.md @@ -83,7 +83,7 @@ The following counters are published as part of the [ASP.NET Core Kestrel web se ## System.Net.Http counters -The following counters are published by the HTTP stack and are mantained in [`HttpTelemetry.AnyOS.cs`](https://github.com/dotnet/runtime/blob/main/src/libraries/System.Net.Http/src/System/Net/Http/HttpTelemetry.AnyOS.cs). +The following counters are published by the HTTP stack and are maintained in [_HttpTelemetry.AnyOS.cs_](https://github.com/dotnet/runtime/blob/main/src/libraries/System.Net.Http/src/System/Net/Http/HttpTelemetry.AnyOS.cs). | Counter | Description | First available in | |--|--|--| From cc1dbef297953bb04b17f2fcb519cb205680b6db Mon Sep 17 00:00:00 2001 From: Daniel Espinosa Date: Fri, 28 Jun 2024 15:34:18 -0700 Subject: [PATCH 4/4] italicized more links and added some more links --- docs/core/diagnostics/available-counters.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/core/diagnostics/available-counters.md b/docs/core/diagnostics/available-counters.md index 460556e28b024..d6660061df351 100644 --- a/docs/core/diagnostics/available-counters.md +++ b/docs/core/diagnostics/available-counters.md @@ -12,7 +12,7 @@ See the [well-known metrics reference](built-in-metrics.md) instead if you are w ## System.Runtime counters -The following counters are published as part of .NET runtime (CoreCLR) and are maintained in the [`RuntimeEventSource.cs`](https://github.com/dotnet/runtime/blob/main/src/libraries/System.Private.CoreLib/src/System/Diagnostics/Tracing/RuntimeEventSource.cs). +The following counters are published as part of .NET runtime (CoreCLR) and are maintained in the [_RuntimeEventSource.cs_](https://github.com/dotnet/runtime/blob/main/src/libraries/System.Private.CoreLib/src/System/Diagnostics/Tracing/RuntimeEventSource.cs). | Counter | Description | First available in | |--|--|--| @@ -43,7 +43,7 @@ The following counters are published as part of .NET runtime (CoreCLR) and are m ## Microsoft.AspNetCore.Hosting counters -The following counters are published as part of [ASP.NET Core](/aspnet/core) and are maintained in [`HostingEventSource.cs`](https://github.com/dotnet/aspnetcore/blob/main/src/Hosting/Hosting/src/Internal/HostingEventSource.cs). +The following counters are published as part of [ASP.NET Core](/aspnet/core) and are maintained in [_HostingEventSource.cs_](https://github.com/dotnet/aspnetcore/blob/main/src/Hosting/Hosting/src/Internal/HostingEventSource.cs). | Counter | Description | First available in | |--|--|--| @@ -54,7 +54,7 @@ The following counters are published as part of [ASP.NET Core](/aspnet/core) and ## Microsoft.AspNetCore.Http.Connections counters -The following counters are published as part of [ASP.NET Core SignalR](/aspnet/core/signalr/introduction) and are maintained in [`HttpConnectionsEventSource.cs`](https://github.com/dotnet/aspnetcore/blob/main/src/SignalR/common/Http.Connections/src/Internal/HttpConnectionsEventSource.cs). +The following counters are published as part of [ASP.NET Core SignalR](/aspnet/core/signalr/introduction) and are maintained in [_HttpConnectionsEventSource.cs_](https://github.com/dotnet/aspnetcore/blob/main/src/SignalR/common/Http.Connections/src/Internal/HttpConnectionsEventSource.cs). | Counter | Description | First available in | |--|--|--| @@ -66,7 +66,7 @@ The following counters are published as part of [ASP.NET Core SignalR](/aspnet/c ## Microsoft-AspNetCore-Server-Kestrel counters -The following counters are published as part of the [ASP.NET Core Kestrel web server](/aspnet/core/fundamentals/servers/kestrel) and are maintained in [`KestrelEventSource.cs`](https://github.com/dotnet/aspnetcore/blob/main/src/Servers/Kestrel/Core/src/Internal/Infrastructure/KestrelEventSource.cs). +The following counters are published as part of the [ASP.NET Core Kestrel web server](/aspnet/core/fundamentals/servers/kestrel) and are maintained in [_KestrelEventSource.cs_](https://github.com/dotnet/aspnetcore/blob/main/src/Servers/Kestrel/Core/src/Internal/Infrastructure/KestrelEventSource.cs). | Counter | Description | First available in | |--|--|--| @@ -101,7 +101,7 @@ The following counters are published by the HTTP stack and are maintained in [_H ## System.Net.NameResolution counters -The following counters track metrics related to DNS lookups. +The following counters track metrics related to DNS lookups and are mantained in [_NameResolutionTelemetry.cs_](https://github.com/dotnet/runtime/blob/main/src/libraries/System.Net.NameResolution/src/System/Net/NameResolutionTelemetry.cs). | Counter | Description | First available in | |--|--|--| @@ -111,7 +111,7 @@ The following counters track metrics related to DNS lookups. ## System.Net.Security counters -The following counters track metrics related to the Transport Layer Security protocol. +The following counters track metrics related to the Transport Layer Security protocol and are mantained in [_NetSecurityTelemetry.cs_](https://github.com/dotnet/runtime/blob/main/src/libraries/System.Net.Security/src/System/Net/Security/NetSecurityTelemetry.cs). | Counter | Description | First available in | |--|--|--| @@ -132,7 +132,7 @@ The following counters track metrics related to the Transport Layer Security pro ## System.Net.Sockets counters -The following counters track metrics related to . +The following counters track metrics related to and are mantained in [_SocketsTelemetry_](https://github.com/dotnet/runtime/blob/main/src/libraries/System.Net.Sockets/src/System/Net/Sockets/SocketsTelemetry.cs). | Counter | Description | First available in | |--|--|--|