Shared libraries that provide Zipkin integration with AWS Kinesis and SQS. Requires JRE 6 or later.
These components provide Zipkin Senders and Collectors which build off interfaces provided by the zipkin-reporters-java and zipkin projects.
The component in an traced application that sends timing data (spans) out of process is called a Sender. Senders are called on interval by an async reporter.
NOTE: Applications can be written in any language, while we currently only have senders in Java, senders in other languages are welcome.
Sender | Description |
---|---|
SQS | An alternative to Kafka. |
Kinesis | An alternative similar to Kafka. |
The component in a zipkin server that receives trace data is called a collector. This decodes spans reported by applications and persists them to a configured storage component.
Collector | Description |
---|---|
SQS | An alternative to Kafka. |
Kinesis | An alternative to Kafka. |
In order to integrate with zipkin-server, you need to use properties launcher to load your collector (or sender) alongside the zipkin-server process.
To integrate a module with a Zipkin server, you need to:
- add a module jar to the
loader.path
- enable the profile associated with that module
- launch Zipkin with
PropertiesLauncher
Each module will also have different minimum variables that need to be set.
Ex.
$ java -Dloader.path=sqs.jar -Dspring.profiles.active=sqs -cp zipkin.jar org.springframework.boot.loader.PropertiesLauncher
If you cannot use our Docker image, you can still integrate yourself by downloading a couple jars. Here's an example of integrating the SQS Collector.
Download the latest released server as zipkin.jar:
cd /tmp
wget -O zipkin.jar 'https://search.maven.org/remote_content?g=io.zipkin.java&a=zipkin-server&v=LATEST&c=exec'
Download the latest released SQS module as sqs.jar:
cd /tmp
wget -O sqs.jar 'https://search.maven.org/remote_content?g=io.zipkin.aws&a=zipkin-autoconfigure-collector-sqs&v=LATEST&c=module'
When you enable the "sqs" profile, you can configure sqs with short environment variables similar to other Zipkin integrations.
cd /tmp
SQS_QUEUE_URL=<from aws sqs list-queues> \
java -Dloader.path=sqs.jar -Dspring.profiles.active=sqs -cp zipkin.jar org.springframework.boot.loader.PropertiesLauncher
** NOTE: Make sure the parameters are defined in the same line or use environment variables **