Grafana配置Prometheus数据源时显示证书不包含xxx.xxx.com域名

问题描述:添加数据源,点击“save and test”时,

Error reading Prometheus: Post "https://xxx.xxx.com/prometheus/api/v1/query": x509: certificate is valid for xxx.com, www.xxx.com, not xxx.xxx.com

解决方案:
1.将https改为http
2.勾选Auth中的Skip TLS Verify
Grafana配置Prometheus数据源时显示证书不包含xxx.xxx.com域名_第1张图片
如果还不行,请修改grafana中的ini配置文件:

[auth.generic_oauth]
tls_skip_verify_insecure = true

如果还不行,设置grafana的环境变量值

GF_SECURITY_DISABLE_INITIALIZED_CHECK=true

如果还不行,就要考虑是不是Prometheus 服务的TLS验证问题(不过prom默认是支持http以及https的)

你可能感兴趣的:(grafana,prometheus)