jcchavezs on master
Fix: Return of createNoopTracer… (compare)
biggest release of the year and also why folks have been so busy. read all about it https://twitter.com/zipkinproject/status/1320676019951448064 https://github.com/openzipkin/zipkin/releases/tag/2.22.0
Congratulations on getting this one out of the door @adriancole !! :fireworks: :fireworks: :fireworks:
hi, i m new to zipkin working on a POC. I started zipkin as below
java -DSTORAGE_TYPE=elasticsearch -DES_HOSTS=http://localhost:9200 -DSEARCH_ENABLED=true -jar zipkin-server-2.22.0-exec.jar --logging.level.zipkin2=DEBUG
Then I posted data via rest API (http://localhost:9411/api/v2/spans)
[
{
"id": "352bff9a74ca9ad2",
"traceId": "5af7183fb1d4cf5f",
"parentId": "6b221d5bc9e6496c",
"name": "get /api",
"timestamp": 1556604172355737,
"duration": 1431,
"kind": "SERVER",
"localEndpoint": {
"serviceName": "backend",
"ipv4": "192.168.99.1",
"port": 3306
},
"remoteEndpoint": {
"ipv4": "172.19.0.2",
"port": 58648
},
"tags": {
"http.method": "GET",
"http.path": "/api"
}
}
]