HBASE-10886 add htrace-zipkin to the runtime dependencies again (Masatake Iwasaki)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1584455 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
75fd9ff2b7
commit
62908378bc
|
@ -126,6 +126,10 @@
|
||||||
<groupId>org.htrace</groupId>
|
<groupId>org.htrace</groupId>
|
||||||
<artifactId>htrace-core</artifactId>
|
<artifactId>htrace-core</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.htrace</groupId>
|
||||||
|
<artifactId>htrace-zipkin</artifactId>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.codehaus.jackson</groupId>
|
<groupId>org.codehaus.jackson</groupId>
|
||||||
<artifactId>jackson-mapper-asl</artifactId>
|
<artifactId>jackson-mapper-asl</artifactId>
|
||||||
|
|
|
@ -195,6 +195,10 @@
|
||||||
<groupId>org.htrace</groupId>
|
<groupId>org.htrace</groupId>
|
||||||
<artifactId>htrace-core</artifactId>
|
<artifactId>htrace-core</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.htrace</groupId>
|
||||||
|
<artifactId>htrace-zipkin</artifactId>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<profiles>
|
<profiles>
|
||||||
|
|
|
@ -441,6 +441,10 @@
|
||||||
<groupId>org.htrace</groupId>
|
<groupId>org.htrace</groupId>
|
||||||
<artifactId>htrace-core</artifactId>
|
<artifactId>htrace-core</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.htrace</groupId>
|
||||||
|
<artifactId>htrace-zipkin</artifactId>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.lmax</groupId>
|
<groupId>com.lmax</groupId>
|
||||||
<artifactId>disruptor</artifactId>
|
<artifactId>disruptor</artifactId>
|
||||||
|
|
|
@ -207,6 +207,10 @@
|
||||||
<groupId>org.htrace</groupId>
|
<groupId>org.htrace</groupId>
|
||||||
<artifactId>htrace-core</artifactId>
|
<artifactId>htrace-core</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.htrace</groupId>
|
||||||
|
<artifactId>htrace-zipkin</artifactId>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<profiles>
|
<profiles>
|
||||||
<!-- Skip the tests in this module -->
|
<!-- Skip the tests in this module -->
|
||||||
|
|
5
pom.xml
5
pom.xml
|
@ -1370,6 +1370,11 @@
|
||||||
<artifactId>htrace-core</artifactId>
|
<artifactId>htrace-core</artifactId>
|
||||||
<version>${htrace.version}</version>
|
<version>${htrace.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.htrace</groupId>
|
||||||
|
<artifactId>htrace-zipkin</artifactId>
|
||||||
|
<version>${htrace.version}</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.lmax</groupId>
|
<groupId>com.lmax</groupId>
|
||||||
<artifactId>disruptor</artifactId>
|
<artifactId>disruptor</artifactId>
|
||||||
|
|
|
@ -80,12 +80,10 @@
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
HTrace also includes a <classname>ZipkinSpanReceiver</classname>
|
HTrace also provides a <classname>ZipkinSpanReceiver</classname>
|
||||||
that converts all span information to
|
which converts all span information to
|
||||||
<link xlink:href="http://github.com/twitter/zipkin">Zipkin</link>
|
<link xlink:href="http://github.com/twitter/zipkin">Zipkin</link>
|
||||||
span format and send them to Zipkin server.
|
span format and send them to Zipkin server.
|
||||||
You need to install htrace-zipkin jar and add it to your HBase classpath
|
|
||||||
in order to use this receiver.
|
|
||||||
The <classname>ZipkinSpanReceiver</classname>
|
The <classname>ZipkinSpanReceiver</classname>
|
||||||
looks in <filename>hbase-site.xml</filename>
|
looks in <filename>hbase-site.xml</filename>
|
||||||
for a <varname>hbase.zipkin.collector-hostname</varname>
|
for a <varname>hbase.zipkin.collector-hostname</varname>
|
||||||
|
|
Loading…
Reference in New Issue