Package com.pinterest.secor.tools

Examples of com.pinterest.secor.tools.LogFileDeleter


        OstrichAdminService ostrichService = new OstrichAdminService(
                config.getOstrichPort());
        ostrichService.start();
        FileUtil.configure(config);

        LogFileDeleter logFileDeleter = new LogFileDeleter(config);
        logFileDeleter.deleteOldLogs();
        Thread.UncaughtExceptionHandler handler = new Thread.UncaughtExceptionHandler() {
            public void uncaughtException(Thread thread, Throwable exception) {
                exception.printStackTrace();
                System.out.println("Thread " + thread + " failed:"
                        + exception.getMessage());
View Full Code Here


            SecorConfig config = SecorConfig.load();
            OstrichAdminService ostrichService = new OstrichAdminService(config.getOstrichPort());
            ostrichService.start();
            FileUtil.configure(config);

            LogFileDeleter logFileDeleter = new LogFileDeleter(config);
            logFileDeleter.deleteOldLogs();

            RateLimitUtil.configure(config);
            Thread.UncaughtExceptionHandler handler = new Thread.UncaughtExceptionHandler() {
                public void uncaughtException(Thread thread, Throwable exception) {
                    LOG.error("Thread " + thread + " failed", exception);
View Full Code Here

TOP

Related Classes of com.pinterest.secor.tools.LogFileDeleter

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.