tree: f8421d50faad642ccb9376b7883b1372f49764ad [path history] [tgz]
  1. src/
  2. build.gradle
  3. README.md
exporters/trace/ocagent/README.md

OpenCensus Java OC-Agent Trace Exporter

The OpenCensus Java OC-Agent Trace Exporter is the Java implementation of the OpenCensus Agent (OC-Agent) Trace Exporter.

Quickstart

Add the dependencies to your project

For Maven add to your pom.xml:

<dependencies>
  <dependency>
    <groupId>io.opencensus</groupId>
    <artifactId>opencensus-api</artifactId>
    <version>0.17.0</version>
  </dependency>
  <dependency>
    <groupId>io.opencensus</groupId>
    <artifactId>opencensus-exporter-trace-ocagent</artifactId>
    <version>0.17.0</version>
  </dependency>
  <dependency>
    <groupId>io.opencensus</groupId>
    <artifactId>opencensus-impl</artifactId>
    <version>0.17.0</version>
    <scope>runtime</scope>
  </dependency>
</dependencies>

For Gradle add to your dependencies:

compile 'io.opencensus:opencensus-api:0.17.0'
compile 'io.opencensus:opencensus-exporter-trace-ocagent:0.17.0'
runtime 'io.opencensus:opencensus-impl:0.17.0'

Register the exporter

public class MyMainClass {
  public static void main(String[] args) throws Exception {
    OcAgentTraceExporter.createAndRegister();
    // ...
  }
}