jorgheymans on master
Update broken link in README.md… (compare)
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"
}
}
]
@/all #Zipkin 2.22.1 starts publishing multi-architecture #Docker images, also to GitHub Container Registry.
Using ghcr.io avoids the new Docker Hub rate limits that apply today.
Ex:
docker run -d -p 9411:9411 ghcr.io/openzipkin/zipkin-slim