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

com.ringcentral.platform.metrics.spring.prometheus.MfPrometheusProperties Maven / Gradle / Ivy

There is a newer version: 4.0.0-RELEASE
Show newest version
package com.ringcentral.platform.metrics.spring.prometheus;

import com.ringcentral.platform.metrics.spring.MfProperties;
import org.springframework.boot.context.properties.ConfigurationProperties;

@ConfigurationProperties(prefix = MfPrometheusProperties.PREFIX)
public class MfPrometheusProperties {

    public static final String PREFIX = MfProperties.PREFIX + ".prometheus";

    private Boolean convertNameToLowercase;

    public Boolean getConvertNameToLowercase() {
        return convertNameToLowercase;
    }

    public void setConvertNameToLowercase(Boolean convertNameToLowercase) {
        this.convertNameToLowercase = convertNameToLowercase;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy