C D F H L M N P R S W Z 

C

com.nike.wingtips.zipkin - package com.nike.wingtips.zipkin
 
com.nike.wingtips.zipkin.util - package com.nike.wingtips.zipkin.util
 
compressZipkinSpanPayload - Variable in class com.nike.wingtips.zipkin.util.ZipkinSpanSenderDefaultHttpImpl
 
configureScheduledExecutorServiceForBatching() - Method in class com.nike.wingtips.zipkin.util.ZipkinSpanSenderDefaultHttpImpl
 
connectTimeoutMillis - Variable in class com.nike.wingtips.zipkin.util.ZipkinSpanSenderDefaultHttpImpl
 
convertWingtipsSpanToZipkinSpan(Span, Endpoint, String) - Method in interface com.nike.wingtips.zipkin.util.WingtipsToZipkinSpanConverter
 
convertWingtipsSpanToZipkinSpan(Span, Endpoint, String) - Method in class com.nike.wingtips.zipkin.util.WingtipsToZipkinSpanConverterDefaultImpl
 
createNewZipkinSpanBuilderWithSpanPurposeAnnotations(Span, long, long, Endpoint, String) - Method in class com.nike.wingtips.zipkin.util.WingtipsToZipkinSpanConverterDefaultImpl
 

D

DEFAULT_CONNECT_TIMEOUT_MILLIS - Static variable in class com.nike.wingtips.zipkin.util.ZipkinSpanSenderDefaultHttpImpl
 
DEFAULT_READ_TIMEOUT_MILLIS - Static variable in class com.nike.wingtips.zipkin.util.ZipkinSpanSenderDefaultHttpImpl
 
DEFAULT_SPAN_BATCH_SENDING_PERIOD_MILLIS - Static variable in class com.nike.wingtips.zipkin.util.ZipkinSpanSenderDefaultHttpImpl
 

F

flush() - Method in interface com.nike.wingtips.zipkin.util.ZipkinSpanSender
Forces any queued/batched spans to be sent to the Zipkin server as quickly as possible.
flush() - Method in class com.nike.wingtips.zipkin.util.ZipkinSpanSenderDefaultHttpImpl
 

H

handleSpan(Span) - Method in interface com.nike.wingtips.zipkin.util.ZipkinSpanSender
"Handles" the given Zipkin span.
handleSpan(Span) - Method in class com.nike.wingtips.zipkin.util.ZipkinSpanSenderDefaultHttpImpl
 

L

lastSpanHandlingErrorLogTimeEpochMillis - Variable in class com.nike.wingtips.zipkin.WingtipsToZipkinLifecycleListener
 
localComponentNamespace - Variable in class com.nike.wingtips.zipkin.WingtipsToZipkinLifecycleListener
 

M

MIN_SPAN_HANDLING_ERROR_LOG_INTERVAL_MILLIS - Static variable in class com.nike.wingtips.zipkin.WingtipsToZipkinLifecycleListener
 

N

nullSafeLong(String) - Method in class com.nike.wingtips.zipkin.util.WingtipsToZipkinSpanConverterDefaultImpl
 

P

postZipkinSpansUrl - Variable in class com.nike.wingtips.zipkin.util.ZipkinSpanSenderDefaultHttpImpl
 

R

readTimeoutMillis - Variable in class com.nike.wingtips.zipkin.util.ZipkinSpanSenderDefaultHttpImpl
 
run() - Method in class com.nike.wingtips.zipkin.util.ZipkinSpanSenderDefaultHttpImpl.ZipkinSpanSenderJob
 

S

senderJob - Variable in class com.nike.wingtips.zipkin.util.ZipkinSpanSenderDefaultHttpImpl
 
sendSpans(List<Span>) - Method in class com.nike.wingtips.zipkin.util.ZipkinSpanSenderDefaultHttpImpl
 
sendSpans(byte[]) - Method in class com.nike.wingtips.zipkin.util.ZipkinSpanSenderDefaultHttpImpl
This method uses basic JDK classes to POST the given payload bytes (representing a list of Zipkin Spans that have been serialized to JSON) to the Zipkin server endpoint at ZipkinSpanSenderDefaultHttpImpl.postZipkinSpansUrl.
serviceName - Variable in class com.nike.wingtips.zipkin.WingtipsToZipkinLifecycleListener
 
spanCompleted(Span) - Method in class com.nike.wingtips.zipkin.WingtipsToZipkinLifecycleListener
 
spanHandlingErrorCounter - Variable in class com.nike.wingtips.zipkin.WingtipsToZipkinLifecycleListener
 
spanSampled(Span) - Method in class com.nike.wingtips.zipkin.WingtipsToZipkinLifecycleListener
 
spanStarted(Span) - Method in class com.nike.wingtips.zipkin.WingtipsToZipkinLifecycleListener
 

W

WingtipsToZipkinLifecycleListener - Class in com.nike.wingtips.zipkin
A SpanLifecycleListener that converts Wingtips Spans to Zipkin Spans and then sends them to a Zipkin server in periodic batches, essentially making Wingtips compatible with Zipkin.
WingtipsToZipkinLifecycleListener(String, String, WingtipsToZipkinSpanConverter, ZipkinSpanSender) - Constructor for class com.nike.wingtips.zipkin.WingtipsToZipkinLifecycleListener
Kitchen-sink constructor that lets you set all the options.
WingtipsToZipkinLifecycleListener(String, String, String) - Constructor for class com.nike.wingtips.zipkin.WingtipsToZipkinLifecycleListener
Convenience constructor that uses WingtipsToZipkinSpanConverterDefaultImpl and ZipkinSpanSenderDefaultHttpImpl as the implementations for zipkinSpanConverter and zipkinSpanSender.
WingtipsToZipkinSpanConverter - Interface in com.nike.wingtips.zipkin.util
Simple interface for a class that knows how to convert a Wingtips Span to a Span.
WingtipsToZipkinSpanConverterDefaultImpl - Class in com.nike.wingtips.zipkin.util
Default implementation of WingtipsToZipkinSpanConverter that knows how to create the appropriate client/server/local annotations for the Span based on the Wingtips Span's Span.getSpanPurpose().
WingtipsToZipkinSpanConverterDefaultImpl() - Constructor for class com.nike.wingtips.zipkin.util.WingtipsToZipkinSpanConverterDefaultImpl
 

Z

zipkinEndpoint - Variable in class com.nike.wingtips.zipkin.WingtipsToZipkinLifecycleListener
 
zipkinSpanConverter - Variable in class com.nike.wingtips.zipkin.WingtipsToZipkinLifecycleListener
 
ZipkinSpanSender - Interface in com.nike.wingtips.zipkin.util
A interface for sending Zipkin spans to a Zipkin server.
zipkinSpanSender - Variable in class com.nike.wingtips.zipkin.util.ZipkinSpanSenderDefaultHttpImpl.ZipkinSpanSenderJob
 
zipkinSpanSender - Variable in class com.nike.wingtips.zipkin.WingtipsToZipkinLifecycleListener
 
ZipkinSpanSenderDefaultHttpImpl - Class in com.nike.wingtips.zipkin.util
A default no-dependencies implementation of ZipkinSpanSender that collects spans into batches and sends them to the Zipkin server at a regular intervals over HTTP.
ZipkinSpanSenderDefaultHttpImpl(String, boolean, int, int, int) - Constructor for class com.nike.wingtips.zipkin.util.ZipkinSpanSenderDefaultHttpImpl
Kitchen-sink constructor that creates a new instance allowing you to specify all the given configuration options.
ZipkinSpanSenderDefaultHttpImpl(String, boolean) - Constructor for class com.nike.wingtips.zipkin.util.ZipkinSpanSenderDefaultHttpImpl
Convenience constructor that calls the kitchen-sink constructor passing in ZipkinSpanSenderDefaultHttpImpl.DEFAULT_CONNECT_TIMEOUT_MILLIS, ZipkinSpanSenderDefaultHttpImpl.DEFAULT_READ_TIMEOUT_MILLIS, and ZipkinSpanSenderDefaultHttpImpl.DEFAULT_SPAN_BATCH_SENDING_PERIOD_MILLIS for the default connect timeout, read timeout, and span batching period respectively.
ZipkinSpanSenderDefaultHttpImpl.ZipkinSpanSenderJob - Class in com.nike.wingtips.zipkin.util
 
ZipkinSpanSenderDefaultHttpImpl.ZipkinSpanSenderJob(ZipkinSpanSenderDefaultHttpImpl, BlockingQueue<Span>) - Constructor for class com.nike.wingtips.zipkin.util.ZipkinSpanSenderDefaultHttpImpl.ZipkinSpanSenderJob
 
zipkinSpanSendingQueue - Variable in class com.nike.wingtips.zipkin.util.ZipkinSpanSenderDefaultHttpImpl.ZipkinSpanSenderJob
 
zipkinSpanSendingQueue - Variable in class com.nike.wingtips.zipkin.util.ZipkinSpanSenderDefaultHttpImpl
 
zipkinSpanSendingScheduler - Variable in class com.nike.wingtips.zipkin.util.ZipkinSpanSenderDefaultHttpImpl
 
C D F H L M N P R S W Z