@CliCommand(value = DISPLAY_RICH_GAUGE, help = "Display Rich Gauge value")
public Table display(
@CliOption(key = { "", "name" }, help = "the name of the richgauge to display value", mandatory = true, optionContext = "existing-rich-gauge disable-string-converter") String name,
@CliOption(key = "pattern", help = "the pattern used to format the richgauge value (see DecimalFormat)", mandatory = false, unspecifiedDefaultValue = NumberFormatConverter.DEFAULT) NumberFormat pattern) {
RichGaugeResource resource = richGaugeOperations().retrieve(name);
return displayRichGauge(resource, pattern);
}