diff --git a/src/Tools/dotnet-counters/Program.cs b/src/Tools/dotnet-counters/Program.cs index db8ecfd4fa..5da067fcd9 100644 --- a/src/Tools/dotnet-counters/Program.cs +++ b/src/Tools/dotnet-counters/Program.cs @@ -90,16 +90,16 @@ private static Option ExportFileNameOption() => private static Option CounterOption() => new Option( alias: "--counters", - description: "List of counter providers.") + description: "A comma-separated list of counter providers. Counter providers can be specified provider_name[:counter_name]. If the provider_name is used without a qualifying counter_name then all counters will be shown. To discover provider and counter names, use the list command.") { Argument = new Argument(name: "counters", getDefaultValue: () => "System.Runtime") }; private static Argument CounterList() => - new Argument>(name: "counter_list", getDefaultValue: () => new List() ) + new Argument>(name: "counter_list", getDefaultValue: () => new List()) { Description = @"A space separated list of counters. Counters can be specified provider_name[:counter_name]. If the provider_name is used without a qualifying counter_name then all counters will be shown. To discover provider and counter names, use the list command.", - Arity = ArgumentArity.ZeroOrMore + IsHidden = true }; private static Command ListCommand() =>