Package com.datasift.dropwizard.hbase.metrics

Examples of com.datasift.dropwizard.hbase.metrics.HBaseInstrumentation


     * @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));
    }
View Full Code Here


     * @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));
    }
View Full Code Here

     * @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));
    }
View Full Code Here

     * @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));
    }
View Full Code Here

TOP

Related Classes of com.datasift.dropwizard.hbase.metrics.HBaseInstrumentation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.