opencensus-java/contrib/http_util at master · langecode/opencensus-java · GitHub
Skip to content

Latest commit

 

History

History
 
 

Folders and files

README.md

OpenCensus HTTP Util

Build Status Windows Build Status Maven Central

The OpenCensus HTTP Util for Java is a collection of utilities for trace instrumentation when working with HTTP.

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.15.0</version>
  </dependency>
  <dependency>
    <groupId>io.opencensus</groupId>
    <artifactId>opencensus-contrib-http-util</artifactId>
    <version>0.15.0</version>
  </dependency>
</dependencies>

For Gradle add to your dependencies:

compile 'io.opencensus:opencensus-api:0.15.0'
compile 'io.opencensus:opencensus-contrib-http-util:0.15.0'