aboutsummaryrefslogtreecommitdiff
path: root/settings.gradle
diff options
context:
space:
mode:
authorAdrian Cole <adriancole@users.noreply.github.com>2017-09-24 10:46:17 +0800
committerGitHub <noreply@github.com>2017-09-24 10:46:17 +0800
commitd05056c351f301e52efc07eb6389afd10d3949ca (patch)
treeb6d5a0801fe5d329aab57363399276ad0f95bb03 /settings.gradle
parent83f82dbe96fd5e0fc2468aa2b696a92953666c65 (diff)
downloadopencensus-java-d05056c351f301e52efc07eb6389afd10d3949ca.tar.gz
Adds ZipkinExporter (#620)
This adds `ZipkinExporter` which allows you to report traces to Zipkin. By default, this uses http, but it can also work with Kafka, SQS, etc as you can override the `Sender`.
Diffstat (limited to 'settings.gradle')
-rw-r--r--settings.gradle2
1 files changed, 2 insertions, 0 deletions
diff --git a/settings.gradle b/settings.gradle
index c3f164e3..abdebed8 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -7,6 +7,7 @@ include ":opencensus-impl"
include ":opencensus-testing"
include ":opencensus-exporter-trace-logging"
include ":opencensus-exporter-trace-stackdriver"
+include ":opencensus-exporter-trace-zipkin"
include ":core"
include ":core_impl"
include ":core_impl_java"
@@ -23,6 +24,7 @@ project(':opencensus-contrib-agent').projectDir = "$rootDir/contrib/agent" as Fi
project(':opencensus-contrib-grpc-util').projectDir = "$rootDir/contrib/grpc_util" as File
project(':opencensus-exporter-trace-logging').projectDir = "$rootDir/exporters/trace_logging" as File
project(':opencensus-exporter-trace-stackdriver').projectDir = "$rootDir/exporters/trace_stackdriver" as File
+project(':opencensus-exporter-trace-zipkin').projectDir = "$rootDir/exporters/trace_zipkin" as File
// Java8 projects only
if (JavaVersion.current().isJava8Compatible()) {