@CliCommand(value = DISPLAY_COUNTER, help = "Display the value of a counter")
public String display(
@CliOption(key = { "", "name" }, help = "the name of the counter to display", mandatory = true, optionContext = "existing-counter disable-string-converter") String name,
@CliOption(key = "pattern", help = "the pattern used to format the value (see DecimalFormat)", mandatory = false, unspecifiedDefaultValue = NumberFormatConverter.DEFAULT) NumberFormat pattern) {
CounterResource counter = counterOperations().retrieve(name);
return pattern.format(counter.getValue());
}