opentelemetry-java-instrume.../instrumentation/spring/starters/zipkin-exporter-starter
Anuraag Agrawal 224dc51e93
Migrate java.gradle to conventions plugin (#3289)
* Migrate java.gradle to convention plugin.

* Switch to java-conventions

* Remove old file

* Fix

* Fix merge

* Missing paragraph

Co-authored-by: Trask Stalnaker <trask.stalnaker@gmail.com>
2021-06-15 08:10:39 +09:00
..
README.md Bump OTel API version in spring boot starter docs (#2833) 2021-04-21 21:18:41 -07:00
zipkin-exporter-starter.gradle Migrate java.gradle to conventions plugin (#3289) 2021-06-15 08:10:39 +09:00

README.md

OpenTelemetry Zipkin Exporter Starter

The OpenTelemetry Exporter Starter for Java is a starter package that includes packages required to enable tracing using OpenTelemetry. It also provides the dependency and corresponding auto-configuration. Check out opentelemetry-spring-boot-autoconfigure for the list of supported libraries and features.

OpenTelemetry Zipkin Exporter Starter is a starter package that includes the opentelemetry-api, opentelemetry-sdk, opentelemetry-extension-annotations, opentelmetry-logging-exporter, opentelemetry-spring-boot-autoconfigurations and spring framework starters required to setup distributed tracing. It also provides the opentelemetry-exporters-zipkin artifact and corresponding exporter auto-configuration. Check out opentelemetry-spring-boot-autoconfigure for the list of supported libraries and features.

Quickstart

Add these dependencies to your project.

Replace OPENTELEMETRY_VERSION with the latest stable release.

  • Minimum version: 1.1.0
  • Note: You may need to include our bintray maven repository to your build file: https://dl.bintray.com/open-telemetry/maven/. As of August 2020 the latest opentelemetry-java-instrumentation artifacts are not published to maven-central. Please check the releasing doc for updates to this process.

Maven

<dependencies>

  <dependency>
    <groupId>io.opentelemetry.instrumentation</groupId>
    <artifactId>opentelemetry-zipkin-exporter-starter</artifactId>
    <version>OPENTELEMETRY_VERSION</version>
  </dependency>

</dependencies>

Gradle

implementation 'io.opentelemetry.instrumentation:opentelemetry-zipkin-exporter-starter:OPENTELEMETRY_VERSION'

Starter Guide

Check out the opentelemetry-api quick start to learn more about OpenTelemetry instrumentation.