Package com.taobao.metamorphosis.tools.monitor.core

Examples of com.taobao.metamorphosis.tools.monitor.core.MonitorConfig


        }
    }


    public void initProbers(String source) throws InitException {
        this.monitorConfig = new MonitorConfig();
        try {
            this.monitorConfig.loadInis(StringUtils.isBlank(source) ? MonitorConfig.DEFAULT_CONFIG_FILE : source);
        }
        catch (IOException e) {
            throw new InitException(e);
View Full Code Here



    public static void main(String[] args) {

        MsgProber prober = null;
        MonitorConfig monitorConfig = new MonitorConfig();
        try {
            monitorConfig.loadInis("monitor.properties");
            CoreManager coreManager = CoreManager.getInstance(monitorConfig, 1);
            prober = new MsgProber(coreManager);
            prober.init();
        }
        catch (Throwable e) {
View Full Code Here

TOP

Related Classes of com.taobao.metamorphosis.tools.monitor.core.MonitorConfig

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.