commit | 8b19f6e3a6cf88ee2661df86e2415cea8fee0609 | [log] [tgz] |
---|---|---|
author | Yang Song <songy23@users.noreply.github.com> | Mon Sep 04 14:52:57 2017 -0700 |
committer | GitHub <noreply@github.com> | Mon Sep 04 14:52:57 2017 -0700 |
tree | 9e836cb7c76c3889a3146785c4e06f6d56b98f50 | |
parent | e24096c600bd57969a38099c36abeca72f2aa517 [diff] |
Add IntervalBucket and tests. (#537)
OpenCensus is a toolkit for collecting application performance and behavior data. It currently includes 3 apis: stats, tracing and tags.
The library is in alpha stage and the API is subject to change.
Please join gitter for help or feedback on this project.
Integrating OpenCensus with a new library means recording stats or traces and propagating context.
For Maven add to your pom.xml
:
<dependencies> <dependency> <groupId>io.opencensus</groupId> <artifactId>opencensus-api</artifactId> <version>0.6.0</version> </dependency> </dependencies>
For Gradle add to your dependencies:
compile 'io.opencensus:opencensus-api:0.6.0'
Here's an example of creating a Span and record some trace annotations. Notice that recording the annotations is possible because we propagate scope. 3rd parties libraries like SLF4J can integrate the same way.
public final class MyClassWithTracing { public static void doWork() { // Create a child Span of the current Span. try (Scope ss = tracer.spanBuilder("MyChildWorkSpan").startScopedSpan()) { doInitialWork(); tracer.getCurrentSpan().addAnnotation("Finished initial work"); doFinalWork(); } } private static void doInitialWork() { // ... tracer.getCurrentSpan().addAnnotation("Important."); // ... } private static void doFinalWork() { // ... tracer.getCurrentSpan().addAnnotation("More important."); // ... } }
TODO
Besides recording tracing/stats events the application also need to link the implementation, setup exporters, and debugging Z-Pages.
For Maven add to your pom.xml
:
<dependencies> <dependency> <groupId>io.opencensus</groupId> <artifactId>opencensus-api</artifactId> <version>0.6.0</version> </dependency> <dependency> <groupId>io.opencensus</groupId> <artifactId>opencensus-impl</artifactId> <version>0.6.0</version> <scope>runtime</scope> </dependency> </dependencies>
For Gradle add to your dependencies:
compile 'io.opencensus:opencensus-api:0.6.0' runtime 'io.opencensus:opencensus-impl:0.6.0'
If the application owner wants to export in-process tracing and stats data via HTML debugging pages see this link.