一、istio指标收集与查询
1、通过 Prometheus 查询度量指标
采集新的指标
应用配置新指标的 YAML 文件,该指标将由 Istio 自动生成和采集
kubectl apply -f metrics.yaml
修改 prometheus 的 svc 模式由 ClusterIP 为 NodePort
kubectl edit svc prometheus -n istio-system
查看 prometheus 的端口
kubectl get svc -n istio-system
通过浏览器进行访问
http://IP:PORT
上述链接打开 Prome...