49505152535455
* @param name the name of the client to register metrics under. */ public InstrumentedHBaseClient(final HBaseClient client, final MetricRegistry registry, final String name) { this(client, new HBaseInstrumentation(client, registry, name)); }
65666768697071
* @param name the name of the client to register metrics under. */ public InstrumentedHBaseClient(final HBaseClient client, final MetricsRegistry registry, final String name) { this(client, new HBaseInstrumentation(client, registry, name)); }
9899100101102103104
* @param registry the {@link MetricsRegistry} to register {@link Metric}s * with */ public InstrumentedHBaseClient(final HBaseClient client, final MetricsRegistry registry) { this(client, new HBaseInstrumentation(client, registry)); }