7th chunk of `content/en/blog/_posts/2017-05-00-Managing-Microservices-With-Istio-Service-Mesh.md`
7ef80561785bc8e2cab946a88249c03fc30178629f64dc36000000010000030d

**Distributed tracing** The next thing we get from Istio is call tracing with Zipkin. We obtain its NodePort URL:
```
export ZIPKIN\_URL=$(kubectl get po -l app=zipkin -o jsonpath={.items[0].status.hostIP}):$(kubectl get svc zipkin -o jsonpath={.spec.ports[0].nodePort})
```
We can now point a browser at http://$ZIPKIN\_URL/ to see request trace spans through the Bookinfo services.
