Hi,
I have Istio 1.1.1 with tracing enabled. Everything works flawlessly except one thing: tracing to external services. I can see outgoing connections in Kiali without a problem, but not in Jaeger traces. Is this even supported or are we getting traces only for internal services?
Insight much appreciated.
---
apiVersion: networking.istio.io/v1alpha3
kind: ServiceEntry
metadata:
name: external-https-ipinfo-io
spec:
hosts:
- ipinfo.io
ports:
- number: 443
name: https
protocol: HTTPS
resolution: DNS
location: MESH_EXTERNAL
---
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: external-https-ipinfo-io
spec:
hosts:
- ipinfo.io
tls:
- match:
- port: 443
sni_hosts:
- ipinfo.io
route:
- destination:
host: ipinfo.io
port:
number: 443
weight: 100