The documentation you are viewing is for Dapr v1.12 which is an older version of Dapr. For up-to-date documentation, see the latest version.

操作方法:使用 Prometheus 观察指标

使用 Prometheus 来收集与 Dapr 运行时本身的执行有关的时间序列数据

在本地安装 Prometheus

要在本地机器上运行 Prometheus,你可以安装并作为进程运行,或者作为 Docker 容器运行。

安装

要安装 Prometheus,请按照这里概述的适用于你的操作系统的步骤。

配置

现在你已经安装了 Prometheus,你需要创建一个配置。

下面是一个 Prometheus 配置的例子,将其保存到一个文件中,即 /tmp/prometheus.ymlC:\Temp\prometheus.yml

global:
  scrape_interval:     15s # By default, scrape targets every 15 seconds.

# A scrape configuration containing exactly one endpoint to scrape:
# Here it's Prometheus itself.
scrape_configs:
  - job_name: 'dapr'

    # Override the global default and scrape targets from this job every 5 seconds.
    scrape_interval: 5s

    static_configs:
      - targets: ['localhost:9090'] # Replace with Dapr metrics port if not default

作为进程运行

用你的配置运行 Prometheus,以启动它从指定目标收集指标。

./prometheus --config.file=/tmp/prometheus.yml --web.listen-address=:8080

我们改变端口,这样就不会与 Dapr 自己的度量端点冲突。

如果你目前没有运行 Dapr 应用程序,则目标将显示为脱机。 为了启动收集指标,你必须用符合配置中提供的目标的指标端口启动 Dapr。

一旦 Prometheus 运行,您将能够通过访问 http://localhost:8080 来访问其仪表板。

作为容器运行

要在你的本地机器上作为 Docker 容器运行 Prometheus,首先要确保你已经安装和运行 Docker

然后你可以使用 Docker 容器来运行 Prometheus。

docker run \
    --net=host \
    -v /tmp/prometheus.yml:/etc/prometheus/prometheus.yml \
    prom/prometheus --config.file=/etc/prometheus/prometheus.yml --web.listen-address=:8080

--net=host 确保 Prometheus 实例将能够连接到主机上运行的任何 Dapr 实例。 --net=host ensures that the Prometheus instance will be able to connect to any Dapr instances running on the host machine. If you plan to run your Dapr apps in containers as well, you’ll need to run them on a shared Docker network and update the configuration with the correct target address.

一旦 Prometheus 运行,您将能够通过访问 http://localhost:8080 来访问其仪表板。

在 Kubernetes 上部署 Prometheus

先决条件

安装 Prometheus

  1. 首先创建命名空间,可用于部署 Grafana 和 Prometheus 监控工具
kubectl create namespace dapr-monitoring
  1. 安装 Prometheus
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

如果您正在使用 minikube 或者想要禁用持久化卷来开发,您可以使用以下命令禁用它:

helm install dapr-prom prometheus-community/prometheus -n dapr-monitoring
 --set alertmanager.persistentVolume.enable=false --set pushgateway.persistentVolume.enabled=false --set server.persistentVolume.enabled=false
  1. 校验

确保 Prometheus 正在群集中运行。

kubectl get pods -n dapr-monitoring

NAME                                                READY   STATUS    RESTARTS   AGE
dapr-prom-kube-state-metrics-9849d6cc6-t94p8        1/1     Running   0          4m58s
dapr-prom-prometheus-alertmanager-749cc46f6-9b5t8   2/2     Running   0          4m58s
dapr-prom-prometheus-node-exporter-5jh8p            1/1     Running   0          4m58s
dapr-prom-prometheus-node-exporter-88gbg            1/1     Running   0          4m58s
dapr-prom-prometheus-node-exporter-bjp9f            1/1     Running   0          4m58s
dapr-prom-prometheus-pushgateway-688665d597-h4xx2   1/1     Running   0          4m58s
dapr-prom-prometheus-server-694fd8d7c-q5d59         2/2     Running   0          4m58s

示例

参考资料