Package com.netflix.servo.jmx

Examples of com.netflix.servo.jmx.JmxMonitorRegistry


                LOG.error(
                        "failed to create instance of class " + className + ", "
                                + "using default class "
                                + JmxMonitorRegistry.class.getName(),
                        t);
                r = new JmxMonitorRegistry(registryName);
            }
            registry = r;
        } else {
            registry = new JmxMonitorRegistry(registryName,
                    getObjectNameMapper(props));
        }
    }
View Full Code Here


        }

        ServoRegistration   servoRegistration = null;
        if ( "true".equalsIgnoreCase(commandLine.getOptionValue(SERVO_INTEGRATION, "false")) )
        {
            servoRegistration = new ServoRegistration(new JmxMonitorRegistry("exhibitor"), 60000);
        }

        String              preferencesPath = commandLine.getOptionValue(PREFERENCES_PATH);

        this.builder = ExhibitorArguments.builder()
View Full Code Here

TOP

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

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.