Updates to zipkin 0.15 (#263)

Notably, this removes the accidental transient dependency on scala, by
removing the dependency on `zipkin-cassandra-core`. Related classes have
been vendored into `storage-cassandra`.

This also splits out `CollectorSampler` as its own thing and introduces
two options for instrumentation sampling:

* `BoundaryTraceIdSampler` - For high-volume sites, based on Finagle
* `CountingTraceIdSampler` - Trades lower performance for high accuracy
This commit is contained in:
Adrian Cole
2016-04-30 00:22:23 +08:00
committed by Marcin Grzejszczak
parent 645845e88c
commit a5b92b817b
3 changed files with 7 additions and 7 deletions

View File

@@ -59,12 +59,12 @@
<dependency>
<groupId>io.zipkin.java</groupId>
<artifactId>zipkin</artifactId>
<version>0.14.0</version>
<version>0.15.0</version>
</dependency>
<dependency>
<groupId>io.zipkin.java</groupId>
<artifactId>zipkin-server</artifactId>
<version>0.14.0</version>
<version>0.15.0</version>
</dependency>
</dependencies>
</dependencyManagement>