All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.eg.agent.android.measurement.consumer.MethodMeasurementConsumer Maven / Gradle / Ivy

There is a newer version: 2.1.3
Show newest version
package com.eg.agent.android.measurement.consumer;

/*
import com.newrelic.agent.android.measurement.MeasurementType;
*/

import com.eg.agent.android.measurement.MeasurementType;

public class MethodMeasurementConsumer extends MetricMeasurementConsumer {
    private static final String METRIC_PREFIX = "Method/";

    public MethodMeasurementConsumer() {
        super(MeasurementType.Method);
    }

    protected String formatMetricName(String name) {
        return METRIC_PREFIX + name.replace("#", "/");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy