Package com.newrelic.metrics.publish.processors

Examples of com.newrelic.metrics.publish.processors.EpochCounter


    private EpochCounter counter = null;

    public MetricMeta(boolean isCounter, String unit) {
        this.unit = unit;
        if (isCounter) {
            this.counter = new EpochCounter();
        }
    }
View Full Code Here


    }

    public MetricMeta(boolean isCounter) {
        this.unit = isCounter ? DEFAULT_COUNTER_UNIT : DEFAULT_UNIT;
        if (isCounter) {
            this.counter = new EpochCounter();
        }
    }
View Full Code Here

TOP

Related Classes of com.newrelic.metrics.publish.processors.EpochCounter

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.