其他分享
首页 > 其他分享> > Dapr+Net6 服务调用09:集群指标收集-普罗米修斯

Dapr+Net6 服务调用09:集群指标收集-普罗米修斯

作者:互联网

1. 请参考上一篇文章创建基础工程

Dapr+Net6 服务调用04:集群负载均衡(k8s)

2. 架构分析

Dapr sidecar 公开指标收集终结点,Prometheus等收集器可通过此端点抓取指标。

3. 创建用于monitor的命名空间

kubectl create namespace dapr-monitoring

4. 安装普罗米修斯到集群

helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo update
helm install dapr-prom prometheus-community/prometheus -n dapr-monitoring

5. 验证安装结果

kubectl get pods -n dapr-monitoring

标签:monitoring,09,community,prometheus,Dapr,dapr,helm,Net6
来源: https://blog.csdn.net/shuaihj/article/details/122704667