我正在尝试在Kubernetes集群中刮取豆荚。我已经使用helm install prometheus stable/prometheus -n monitoring
命令部署了普罗米修斯,以便在监视名称空间中对其进行设置。
我正在尝试通过在pods元素内添加注释来应用推荐的指令来刮擦Pod:
kubectl edit pod nfs-provisioner-nfs-client-provisioner-648b66fc7c-w2btj -n storage
添加:
metadata:
annotations:
prometheus.io/path: /metrics
prometheus.io/port: "8080"
prometheus.io/scrape: "true"
如本链接所述:https://hub.helm.sh/charts/stable/prometheus
但是由于某种原因我无法解决,我在Prometheus目标仪表板中拒绝了连接
状态DOWN和Get http://10.233.96.18:8080/metrics: dial tcp 10.233.96.18:8080: connect: connection refused
为错误:
我在做什么错了?