adoroszlai commented on a change in pull request #1255: HDDS-1935. Improve the visibility with Ozone Insight tool URL: https://github.com/apache/hadoop/pull/1255#discussion_r314484032
########## File path: hadoop-ozone/insight/src/main/java/org/apache/hadoop/ozone/insight/List.java ########## @@ -0,0 +1,38 @@ +package org.apache.hadoop.ozone.insight; + +import org.apache.hadoop.hdds.cli.HddsVersionProvider; +import org.apache.hadoop.hdds.conf.OzoneConfiguration; + +import picocli.CommandLine; + +import java.util.Map; +import java.util.concurrent.Callable; + +/** + * Subcommand to list of the available insight points. + */ [email protected]( + name = "list", + description = "Show available insight points.", + mixinStandardHelpOptions = true, + versionProvider = HddsVersionProvider.class) +public class List extends BaseInsightSubcommand implements Callable<Void> { + + @CommandLine.Parameters(defaultValue = "") + private String selection; Review comment: Do you plan to use this parameter, eg. to filter available insight point list? ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
