OpenTelemetry Java SDK
Go to file
Anuraag Agrawal b8c5acd3ff
Rename TraceConfig -> SpanLimits and move to upper package. (#2686)
2021-02-04 09:10:05 +09:00
.github Use shadow plugin to generate bundled jars. (#2641) 2021-02-02 12:04:54 +09:00
all Migrate :all to kts (#2640) 2021-02-02 09:10:13 +09:00
api [BREAKING CHANGE] Remove AsHexString suffix from ids getters. (#2684) 2021-02-03 10:40:43 -08:00
bom Publish BOM for alpha artifacts. (#2669) 2021-02-02 09:03:09 -08:00
bom-alpha Publish BOM for alpha artifacts. (#2669) 2021-02-02 09:03:09 -08:00
buildscripts Generate the ResourceAttributes class (#2540) 2021-01-19 23:02:11 -08:00
dependencyManagement archunit 0.16.0 (#2621) 2021-02-01 12:25:50 +09:00
docs Add a doc outlining possible approach to SDK configuration. (#2262) 2020-12-22 09:34:55 +09:00
examples Use shadow plugin to generate bundled jars. (#2641) 2021-02-02 12:04:54 +09:00
exporters [BREAKING CHANGE] Remove AsHexString suffix from ids getters. (#2684) 2021-02-03 10:40:43 -08:00
extensions [BREAKING CHANGE] Remove AsHexString suffix from ids getters. (#2684) 2021-02-03 10:40:43 -08:00
gradle/wrapper Update to Gradle 6.8.1 (#2576) 2021-01-25 08:12:26 -08:00
integration-tests Use shadow plugin to generate bundled jars. (#2641) 2021-02-02 12:04:54 +09:00
opencensus-shim [BREAKING CHANGE] Remove AsHexString suffix from ids getters. (#2684) 2021-02-03 10:40:43 -08:00
opentracing-shim [BREAKING CHANGE] Remove AsHexString suffix from ids getters. (#2684) 2021-02-03 10:40:43 -08:00
perf-harness Move labels outside of the stable package (#2647) 2021-02-02 10:24:06 -08:00
proto Migrate proto to kts (#2639) 2021-02-02 18:17:49 +09:00
sdk Rename TraceConfig -> SpanLimits and move to upper package. (#2686) 2021-02-04 09:10:05 +09:00
sdk-extensions Rename TraceConfig -> SpanLimits and move to upper package. (#2686) 2021-02-04 09:10:05 +09:00
semconv Remove the remaining deprecated code from the project. (#2612) 2021-01-29 19:26:42 -08:00
.codecov.yaml rename master -> main (#2579) 2021-01-25 16:26:18 -08:00
.editorconfig Disable inner class imports to avoid errorprone BadImport error (#1883) 2020-10-26 09:56:02 -07:00
.gitattributes Add .gitattributes. (#1798) 2020-10-15 16:03:55 -07:00
.gitignore Add .editorconfig file with google-java-format compatible options (#1136) 2020-04-27 08:42:59 -07:00
CHANGELOG.md Update the CHANGELOG for the latest changes. (#2670) 2021-02-02 18:14:11 -08:00
CONTRIBUTING.md rename master -> main (#2579) 2021-01-25 16:26:18 -08:00
LICENSE Initial commit 2019-02-26 08:43:37 -08:00
QUICKSTART.md update the QUICKSTART for 0.15.0 (#2615) 2021-02-01 09:42:53 -08:00
README.md Update changelog / docs for 0.15.0 (#2603) 2021-01-29 08:55:45 -08:00
RELEASING.md Publish artifacts directly to sonatype. (#2596) 2021-01-28 08:05:54 -08:00
build.gradle.kts Tweak javadoc options (#2662) 2021-02-01 20:02:57 -08:00
gradle.properties Replace max-workers in favor of priority setting, enable local build caching, and remove unnecessary XmX (#2431) 2021-01-06 08:19:58 -08:00
gradlew Update Gradle Wrapper to 6.6 (#1529) 2020-08-11 08:01:14 -07:00
gradlew.bat Add .gitattributes. (#1798) 2020-10-15 16:03:55 -07:00
settings.gradle Publish BOM for alpha artifacts. (#2669) 2021-02-02 09:03:09 -08:00

README.md

OpenTelemetry

Continuous Build Coverage Status Maven Central

We hold regular meetings. See details at community page.

We use GitHub Discussions for support or general questions. Feel free to drop us a line.

Overview

OpenTelemetry is the merging of OpenCensus and OpenTracing into one project.

This project contains the following top level components:

  • OpenTelemetry API:
  • extensions define additional API extensions, which are not part of the core API.
  • sdk defines the implementation of the OpenTelemetry API.
  • sdk-extensions define additional SDK extensions, which are not part of the core SDK.
  • OpenTracing shim defines a bridge layer from OpenTracing to the OpenTelemetry API.
  • examples on how to use the APIs, SDK, and standard exporters.

We would love to hear from the larger community: please provide feedback proactively.

Requirements

Unless otherwise noted, all published artifacts support Java 8 or higher. See CONTRIBUTING.md for additional instructions for building this project for development.

Note about extensions

Both API and SDK extensions consist of various additional components which are excluded from the core artifacts to keep them from growing too large. We still aim to provide the same level of quality and guarantee for them as for the core components. Please don't hesitate to use them if you find them useful.

Project setup and contribute

Please refer to the contribution guide on how to setup and contribute!

Quick Start

Please refer to the quick start guide on how use the OpenTelemetry API.

Published Releases

Published releases are available on maven central. We strongly recommend using our published BOM to keep all dependency versions in sync.

Maven

<project>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>io.opentelemetry</groupId>
        <artifactId>opentelemetry-bom</artifactId>
        <version>0.15.0</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>io.opentelemetry</groupId>
      <artifactId>opentelemetry-api</artifactId>
    </dependency>
  </dependencies>
</project>

Gradle

dependencies {
  implementation platform("io.opentelemetry:opentelemetry-bom:0.15.0")
  implementation('io.opentelemetry:opentelemetry-api')
}

Snapshots

Snapshots based out the main branch are available for opentelemetry-api, opentelemetry-sdk and the rest of the artifacts. We strongly recommend using our published BOM to keep all dependency versions in sync.

Maven

<project>
  <repositories>
    <repository>
      <id>oss.sonatype.org-snapshot</id>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </repository>
  </repositories>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>io.opentelemetry</groupId>
        <artifactId>opentelemetry-bom</artifactId>
        <version>0.16.0-SNAPSHOT</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>io.opentelemetry</groupId>
      <artifactId>opentelemetry-api</artifactId>
    </dependency>
  </dependencies>
</project>

Gradle

repositories {
	maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}

dependencies {
  implementation platform("io.opentelemetry:opentelemetry-bom:0.15.0-SNAPSHOT")
  implementation('io.opentelemetry:opentelemetry-api')
}

Libraries will usually only need opentelemetry-api, while applications may want to use opentelemetry-sdk.

Releases

OpenTelemetry Java is under active development. Releases aren't guaranteed to conform to a specific version of the specification. Future releases will not attempt to maintain backwards compatibility with previous releases.

Check out information about the latest release.

This is a current feature status list:

Component Version
Tracing API v0.15.0
Tracing SDK v0.15.0
Jaeger Trace Exporter v0.15.0
Zipkin Trace Exporter v0.15.0
Context Propagation v0.15.0
OTLP Exporter (Spans) v0.15.0
OTLP Exporter (Metrics) v0.15.0-alpha
Metrics API v0.15.0-alpha
Metrics SDK v0.15.0-alpha
Prometheus Metrics Exporter v0.15.0-alpha
OpenTracing Bridge v0.15.0-alpha
OpenCensus Bridge v0.15.0-alpha

See the project milestones for details on upcoming releases. The dates and features described in issues and milestones are estimates, and subject to change.

Summary

We plan to merge projects and pave the path for future improvements as a unified community of tracing vendors, users and library authors who wants apps be managed better. We are open to feedback and suggestions from all of you!

Contributing

See CONTRIBUTING.md

Approvers (@open-telemetry/java-approvers):

Find more about the approver role in community repository.

Maintainers (@open-telemetry/java-maintainers):

Find more about the maintainer role in community repository.

Thanks to all the people who have contributed

contributors