diff --git a/src/Tools/dotnet-trace/CommandLine/Commands/ListProfilesCommandHandler.cs b/src/Tools/dotnet-trace/CommandLine/Commands/ListProfilesCommandHandler.cs index 13b17cb81e..8bd1e06e78 100644 --- a/src/Tools/dotnet-trace/CommandLine/Commands/ListProfilesCommandHandler.cs +++ b/src/Tools/dotnet-trace/CommandLine/Commands/ListProfilesCommandHandler.cs @@ -66,7 +66,12 @@ public static Command ListProfilesCommand() => new EventPipeProvider( name: "Microsoft-Windows-DotNETRuntime", eventLevel: EventLevel.Informational, - keywords: (long)ClrTraceEventParser.Keywords.GC + keywords: (long)ClrTraceEventParser.Keywords.GC + ), + new EventPipeProvider( + name: "Microsoft-Windows-DotNETRuntimePrivate", + eventLevel: EventLevel.Informational, + keywords: (long)ClrTraceEventParser.Keywords.GC ) }, "Tracks GC collections only at very low overhead."),