Package com.rackspacecloud.blueflood.inputs.processors

Examples of com.rackspacecloud.blueflood.inputs.processors.DiscoveryWriter


                bufferedMetrics,
                context
        ).withLogger(log);

        discoveryWriter =
        new DiscoveryWriter(new ThreadPoolBuilder()
            .withName("Metric Discovery Writing")
            .withCorePoolSize(Configuration.getInstance().getIntegerProperty(CoreConfig.DISCOVERY_WRITER_MIN_THREADS))
            .withMaxPoolSize(Configuration.getInstance().getIntegerProperty(CoreConfig.DISCOVERY_WRITER_MAX_THREADS))
            .withUnboundedQueue()
            .build());
View Full Code Here

TOP

Related Classes of com.rackspacecloud.blueflood.inputs.processors.DiscoveryWriter

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.