使用 prometheus 查询外部 etcd
Querying external etcd with prometheus
我在 kubernetes 上安装了 prometheus 运行,具有以下抓取配置,如文档所述。 .pem 文件位于 prometheus 容器内磁盘上的位置。
https://prometheus.io/docs/prometheus/latest/configuration/configuration/#
scrape_configs:
- job_name: etcd
static_configs:
- targets: ['10.0.0.222:2379','10.0.0.221:2379','10.0.0.220:2379']
tls_config:
# CA certificate to validate API server certificate with.
ca_file: /prometheus/ca.pem
cert_file: /prometheus/cert.pem
key_file: /prometheus/key.pem
我将 etcd 视为 prometheus 中的目标,但它返回的是垃圾。
https://i.imgur.com/rdRI4V7.png
我可以通过像这样传递客户端证书信息来命中指标端点来执行本地卷曲。
我做错了什么?
sudo curl --cacert /etc/ssl/etcd/ssl/ca.pem https://127.0.0.1:2379/metrics -L --cert /etc/ssl/etcd/ssl/node-kubemaster-rwva1-prod-2.pem --key /etc/ssl/etcd/ssl/node-kubemaster-rwva1-prod-2-key.pem^C
您需要为 HTTPS 抓取添加 scheme: https
。
我在 kubernetes 上安装了 prometheus 运行,具有以下抓取配置,如文档所述。 .pem 文件位于 prometheus 容器内磁盘上的位置。
https://prometheus.io/docs/prometheus/latest/configuration/configuration/#
scrape_configs:
- job_name: etcd
static_configs:
- targets: ['10.0.0.222:2379','10.0.0.221:2379','10.0.0.220:2379']
tls_config:
# CA certificate to validate API server certificate with.
ca_file: /prometheus/ca.pem
cert_file: /prometheus/cert.pem
key_file: /prometheus/key.pem
我将 etcd 视为 prometheus 中的目标,但它返回的是垃圾。
https://i.imgur.com/rdRI4V7.png
我可以通过像这样传递客户端证书信息来命中指标端点来执行本地卷曲。
我做错了什么?
sudo curl --cacert /etc/ssl/etcd/ssl/ca.pem https://127.0.0.1:2379/metrics -L --cert /etc/ssl/etcd/ssl/node-kubemaster-rwva1-prod-2.pem --key /etc/ssl/etcd/ssl/node-kubemaster-rwva1-prod-2-key.pem^C
您需要为 HTTPS 抓取添加 scheme: https
。