Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

By adding metrics(), now any client can get the metrics from AdminClient, this is a should-have function since all the other clients has (producer, consumer...) have it.

Public Interfaces

Code Block
languagejava
/**
 * Get the metrics kept by the adminClient
 *
 * @return
 */
public abstract Map<MetricName, ? extends Metric> metrics();

...