Kubernetes整合Prometheus、Grafana监控Istio

前言:Kubernetes集成Istio已完成、整合Prometheus、Grafana监控Istio性能

版本:Kubernet-1.15.5、Istio-1.5.2

Kubernetes整合Prometheus、Grafana监控Istio_第1张图片

一、Istio安装集成的时候会创建Prometheus、Grafana并且使用默认端口内部交互

在这里插入图片描述

二、如果想通过9090端口访问Pormetheus查看服务监控状态,只需要将对应的端口对外暴露即可,我这边暴露Grafana对应的3000端口

kubectl -n istio-system port-forward $(kubectl -n istio-system get pod -l app=grafana -o jsonpath=’{.items[0].metadata.name}’) 3000:3000 &

这里需要注意的是app名称,需要和服务启动指定的名称一致

Kubernetes整合Prometheus、Grafana监控Istio_第2张图片

三、浏览器本地访问http://localhost:3000/d/3–MLVZZk/istio-pilot-dashboard

Kubernetes整合Prometheus、Grafana监控Istio_第3张图片

你可能感兴趣的:(istio)