From a3f5251493d4b99ff37e18cf9343e57b4f525982 Mon Sep 17 00:00:00 2001 From: Sung Yoon Whang Date: Mon, 12 Apr 2021 13:47:21 -0700 Subject: [PATCH] specify units --- src/Tools/dotnet-counters/KnownData.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tools/dotnet-counters/KnownData.cs b/src/Tools/dotnet-counters/KnownData.cs index 78d76970c3..93d67c5fff 100644 --- a/src/Tools/dotnet-counters/KnownData.cs +++ b/src/Tools/dotnet-counters/KnownData.cs @@ -52,7 +52,7 @@ private static IEnumerable CreateKnownProviders(string runtimeV new CounterProfile{ Name="active-timer-count", Description="Number of timers that are currently active", SupportedVersions=new[] { net30, net31, net50 } }, new CounterProfile{ Name="il-bytes-jitted", Description="Total IL bytes jitted", SupportedVersions=new[] { net50 } }, new CounterProfile{ Name="methods-jitted-count", Description="Number of methods jitted", SupportedVersions=new[] { net50 } }, - new CounterProfile{ Name="gc-committed", Description="Size of committed memory by the GC", SupportedVersions=new[] { net60 } } + new CounterProfile{ Name="gc-committed", Description="Size of committed memory by the GC (MB)", SupportedVersions=new[] { net60 } } }, runtimeVersion // RuntimeVersion );