tree: d7546ae62f5e2f9a9cd50b0c5aa562ef295e26dd [path history] [tgz]
  1. src/
  2. build.gradle
  3. README.md
contrib/http_jetty_client/README.md

OpenCensus Jetty HttpClient

Build Status Windows Build Status Maven Central

The OpenCensus Jetty HttpClient for Java is a wrapper for trace instrumentation when using Jetty as HTTP client.

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.19.0</version>
  </dependency>
  <dependency>
    <groupId>io.opencensus</groupId>
    <artifactId>opencensus-contrib-http-jetty-client</artifactId>
    <version>0.19.0</version>
  </dependency>
</dependencies>

For Gradle add to your dependencies:

compile 'io.opencensus:opencensus-api:0.19.0'
compile 'io.opencensus:opencensus-contrib-http-jetty-client:0.19.0'