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

com.ringcentral.platform.metrics.configs.BaseMetricConfig Maven / Gradle / Ivy

The newest version!
package com.ringcentral.platform.metrics.configs;

import com.ringcentral.platform.metrics.MetricContext;
import com.ringcentral.platform.metrics.labels.LabelValues;

public class BaseMetricConfig extends AbstractMetricConfig {

    public BaseMetricConfig(
        boolean enabled,
        String description,
        LabelValues prefixLabelValues,
        MetricContext context) {

        super(
            enabled,
            description,
            prefixLabelValues,
            context);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy