Add Maven status and instructions on adding dependencies. (#115)

1 file changed
tree: 5809d21a58a30fe7b46e0f9590f87be544ed8fc3
  1. gen-go/
  2. gradle/
  3. src/
  4. .gitignore
  5. .travis.yml
  6. AUTHORS
  7. build.gradle
  8. CONTRIBUTING.md
  9. gradlew
  10. gradlew.bat
  11. LICENSE
  12. pom.xml
  13. README.md
  14. RELEASING.md
  15. settings.gradle
README.md

OpenCensus Proto - Language Independent Interface Types For OpenCensus

Build Status Maven Central

Census provides a framework to define and collect stats against metrics and to break those stats down across user-defined dimensions.

The Census framework is natively available in many languages (e.g. C++, Go, and Java). The API interface types are defined using protos to ensure consistency and interoperability for the different implementations.

Quickstart

Add the dependencies to your Java project

For Maven add to pom.xml:

<dependency>
  <groupId>io.opencensus</groupId>
  <artifactId>opencensus-proto</artifactId>
  <version>0.0.2</version>
</dependency>

For Gradle add to dependencies:

compile 'io.opencensus:opencensus-proto:0.0.2'