Package com.twitter.zipkin.gen.ZipkinCollector

Examples of com.twitter.zipkin.gen.ZipkinCollector.Client


        try {
            clientProvider.getClient().Log(logEntries);
            return true;
        } catch (final TException e) {
            LOGGER.debug("Exception when trying to log Span.  Will retry: ", e.getMessage());
            final Client newClient = clientProvider.exception(e);
            if (newClient != null) {
                LOGGER.debug("Got new client with new connection. Logging with new client.");
                try {
                    newClient.Log(logEntries);
                    return true;
                } catch (final TException e2) {
                    LOGGER.warn("Logging spans failed. " + logEntries.size() + " spans are lost!", e2);
                }
            } else {
View Full Code Here

TOP

Related Classes of com.twitter.zipkin.gen.ZipkinCollector.Client

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.