Package com.netflix.servo.jmx

Examples of com.netflix.servo.jmx.ObjectNameMapper


     * is used.
     * @param props  the properties
     * @return       the mapper to use
     */
    private static ObjectNameMapper getObjectNameMapper(Properties props) {
        ObjectNameMapper mapper = ObjectNameMapper.DEFAULT;
        final String jmxNameMapperClass = props.getProperty(REGISTRY_JMX_NAME_PROP);
        if (jmxNameMapperClass != null) {
            try {
                Class<?> mapperClazz = Class.forName(jmxNameMapperClass);
                mapper = (ObjectNameMapper) mapperClazz.newInstance();
View Full Code Here

TOP

Related Classes of com.netflix.servo.jmx.ObjectNameMapper

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.