Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
src/ | 03-May-2024 | - | 259 | 170 | ||
README.md | D | 03-May-2024 | 1.3 KiB | 36 | 29 | |
build.gradle | D | 03-May-2024 | 752 | 27 | 19 |
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 6The *OpenCensus gRPC Util for Java* is a collection of utilities for trace instrumentation when 7working with [gRPC][grpc-url]. 8 9## Quickstart 10 11### Add the dependencies to your project 12 13For 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 24For Gradle add to your dependencies: 25```gradle 26compile '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