openzipkin / zipkin-support

repository for support questions raised as issues
4 stars 2 forks source link

zipkin service missing from envoy #7

Closed andrevegas closed 4 years ago

andrevegas commented 4 years ago

Hi, for documentation purposes.

Problem: Zipkin can consume the metrics sent but UI breaks when querying the data. image

Solution: The cluster name MUST to be defined on envoy's config context. If it's not, the span "span.localEndpoint.serviceName" is not generated and caused the UI to break.

Define it into the config file: envoy.yaml: > node: id: foo cluster: foo static_resources: listeners: ...

or as init params:

envoy -c /etc/envoy.yaml --service-cluster ${NAME}

relates to: https://github.com/openzipkin/zipkin/issues/3072

Cheers,

codefromthecrypt commented 4 years ago

great and thanks!