thelastpickle / cassandra-zipkin-tracing

With Cassandra-3.4+ the tracing implementation can be replaced with zipkin tracing as provided by this project.
Apache License 2.0
47 stars 11 forks source link

İnstallation cassandra-zipkin-tracing #9

Closed ynsdl closed 5 years ago

ynsdl commented 5 years ago

Hi,

I try to install cassandra-zipkin-tracing. I installed cassandra-zipkin-tracing and copied jars to cassandra lib directory.

edit cassandra-env.sh for JVM_OPTS and added -Dcassandra.custom_tracing_class=com.thelastpickle.cassandra.tracing.ZipkinTracing

if [ "$LOCAL_JMX" = "yes" ]; then JVM_OPTS="$JVM_OPTS -Dcassandra.jmx.local.port=$JMX_PORT -Dcassandra.custom_tracing_class=com.thelastpickle.cassandra.tracing.ZipkinTracing" JVM_OPTS="$JVM_OPTS -Dcom.sun.management.jmxremote.authenticate=false" else JVM_OPTS="$JVM_OPTS -Dcassandra.jmx.remote.port=$JMX_PORT -Dcassandra.custom_tracing_class=com.thelastpickle.cassandra.tracing.ZipkinTracing"

I started cassandra process but I cant see port 9411 inside LISTEN PORTS so http://127.0.0.1:9411/ cant reach here ? whats wrong?

michaelsembwever commented 5 years ago

If http://127.0.0.1:9411/ is intended to be the Zipkin server then that is a separate process (the Zipkin Server) that you must run separately.

This library is for the tracing instrumentation of an existing Cassandra infrastructure.