Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
src/ | 03-May-2024 | - | 186 | 97 | ||
README.md | D | 03-May-2024 | 1.3 KiB | 37 | 28 | |
build.gradle | D | 03-May-2024 | 380 | 16 | 11 |
README.md
1# OpenCensus Exemplar Util 2 3[![Build Status][travis-image]][travis-url] 4[![Windows Build Status][appveyor-image]][appveyor-url] 5[![Maven Central][maven-image]][maven-url] 6 7The *OpenCensus Exemplar Util for Java* is a collection of utilities for recording Exemplars for 8OpenCensus stats. 9 10## Quickstart 11 12### Add the dependencies to your project 13 14For Maven add to your `pom.xml`: 15```xml 16<dependencies> 17 <dependency> 18 <groupId>io.opencensus</groupId> 19 <artifactId>opencensus-contrib-exemplar-util</artifactId> 20 <version>0.16.1</version> 21 </dependency> 22</dependencies> 23``` 24 25For Gradle add to your dependencies: 26```gradle 27compile 'io.opencensus:opencensus-contrib-exemplar-util:0.16.1' 28``` 29 30[travis-image]: https://travis-ci.org/census-instrumentation/opencensus-java.svg?branch=master 31[travis-url]: https://travis-ci.org/census-instrumentation/opencensus-java 32[appveyor-image]: https://ci.appveyor.com/api/projects/status/hxthmpkxar4jq4be/branch/master?svg=true 33[appveyor-url]: https://ci.appveyor.com/project/opencensusjavateam/opencensus-java/branch/master 34[maven-image]: https://maven-badges.herokuapp.com/maven-central/io.opencensus/opencensus-contrib-exemplar-util/badge.svg 35[maven-url]: https://maven-badges.herokuapp.com/maven-central/io.opencensus/opencensus-contrib-exemplar-util 36 37