{
"status" : "DOWN",
"zipkin" : {
"status" : "DOWN",
"details" : {
"ElasticsearchStorage{initialEndpoints=https://xyz.es.amazonaws.com, index=zipkin}" : {
"status" : "DOWN",
"details" : {
"error" : "java.lang.IllegalArgumentException: Elasticsearch versions 5-7.x are supported, was: 1.0"
}
}
}
}
}
Hello people !
We're going to use zipkin, and we're wondering which backend to choose between cassandra and elasticsearch. I couldn't find much information detailed for zipkin's usage, are there some guidelines somewhere to help us with this choice ? pros and cons, performances or whatever
cheers !
Hello, apologies if it's a stupid question, but we've instrumented a chain of services such as A -> POST -> B -> POST -> C
. My tracing json contains details for this chained call, but on the Zipking UI I can only see the calls from A -> B
.
Would be correct to expect that call B -> C
should be shown on the same zipkin screen, as a child node of service A?
/zipkin/traces/{traceId}
sudo docker run -d -p 9411:9411 \
-e ES_HOSTS=http://172.30.5.99:3002 \
-e ES_INDEX=tracing \
-e STORAGE_TYPE=elasticsearch \
--name=zipkin_test openzipkin/zipkin
The container does not start, it stays in "starting" mode in portainer, then it stops. are the env-var ES_HOSTS
and ES_INDEX
supported by default in the image?
Connection error: ('Unable to connect to any servers', {'127.0.0.1:9042': OperationTimedOut('errors=Timed out creating connection (5 seconds), last_host=None',)})
- JAVA_OPTS=-Darmeria.ssl.key-store=/zipkin/keystore.p12 -Darmeria.ssl.key-store-password=password -Darmeria.ssl.enabled=true -Darmeria.ports[0].port=9411 -Darmeria.ports[0].protocols[0]=https
The server starts up and the UI works with https, but zipkin logs Caused by: javax.net.ssl.SSLHandshakeException: error:1000009c:SSL routines:OPENSSL_internal:HTTP_REQUEST
every 5 seconds. Any ideas what I'm doing wrong?