Home | History | Annotate | only in /external/opencensus-java/contrib/grpc_util
Up to higher level directory
NameDateSize
build.gradle22-Oct-2020752
README.md22-Oct-20201.3K
src/22-Oct-2020

README.md

      1 # OpenCensus gRPC Util
      2 [![Build Status][travis-image]][travis-url]
      3 [![Windows Build Status][appveyor-image]][appveyor-url]
      4 [![Maven Central][maven-image]][maven-url]
      5 
      6 The *OpenCensus gRPC Util for Java* is a collection of utilities for trace instrumentation when 
      7 working with [gRPC][grpc-url].
      8 
      9 ## Quickstart
     10 
     11 ### Add the dependencies to your project
     12 
     13 For Maven add to your `pom.xml`:
     14 ```xml
     15 <dependencies>
     16   <dependency>
     17     <groupId>io.opencensus</groupId>
     18     <artifactId>opencensus-contrib-grpc-util</artifactId>
     19     <version>0.16.1</version>
     20   </dependency>
     21 </dependencies>
     22 ```
     23 
     24 For Gradle add to your dependencies:
     25 ```gradle
     26 compile 'io.opencensus:opencensus-contrib-grpc-util:0.16.1'
     27 ```
     28 
     29 [travis-image]: https://travis-ci.org/census-instrumentation/opencensus-java.svg?branch=master
     30 [travis-url]: https://travis-ci.org/census-instrumentation/opencensus-java
     31 [appveyor-image]: https://ci.appveyor.com/api/projects/status/hxthmpkxar4jq4be/branch/master?svg=true
     32 [appveyor-url]: https://ci.appveyor.com/project/opencensusjavateam/opencensus-java/branch/master
     33 [maven-image]: https://maven-badges.herokuapp.com/maven-central/io.opencensus/opencensus-contrib-grpc-util/badge.svg
     34 [maven-url]: https://maven-badges.herokuapp.com/maven-central/io.opencensus/opencensus-contrib-grpc-util
     35 [grpc-url]: https://github.com/grpc/grpc-java
     36