From 848edd12d3686a9a2e0823e829eb03b06de22d2a Mon Sep 17 00:00:00 2001 From: Noah Falk Date: Mon, 30 Sep 2024 16:24:53 -0700 Subject: [PATCH] Move metrics-collection.md to .NET 6 Changes in dotnet-counters have made it incompatible with .NET Core 3.1. Given 3.1 is already out of support I am updating the docs to include .NET 6 as the lowest version. --- docs/core/diagnostics/metrics-collection.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/core/diagnostics/metrics-collection.md b/docs/core/diagnostics/metrics-collection.md index aa0fc75730d88..f041c4a03c223 100644 --- a/docs/core/diagnostics/metrics-collection.md +++ b/docs/core/diagnostics/metrics-collection.md @@ -7,7 +7,7 @@ ms.date: 10/27/2021 # Collect metrics -**This article applies to: ✔️** .NET Core 3.1 and later **✔️** .NET Framework 4.6.1 and later +**This article applies to: ✔️** .NET 6.0 and later **✔️** .NET Framework 4.6.1 and later Instrumented code can record numeric measurements, but the measurements usually need to be aggregated, transmitted, and stored to create useful metrics for monitoring. The process of aggregating, transmitting, and storing data is called collection. This tutorial shows several examples of collecting metrics: @@ -19,7 +19,7 @@ For more information on custom metric instrumentation and options, see [Compare ## Prerequisites -- [.NET Core 3.1 SDK](https://dotnet.microsoft.com/download/dotnet) or a later +- [.NET 6.0 SDK](https://dotnet.microsoft.com/download/dotnet) or a later ## Create an example app