在用dokcer搭建Prometheus环境时,如果服务器用学院环境(即k8s.testing-studio.com)那么一切正常,这边我尝试用腾讯云服务器的ip,我的prometheus.yml如下:
global:
scrape_interval: 15s
evaluation_interval: 15s
scrape_configs:
- job_name: ‘prometheus’
static_configs:- targets: [‘localhost:9090’]
- job_name: ‘node_exporter’
static_configs:- targets: [‘121.4.207.247:9100’]
- job_name: ‘mysql’
static_configs:- targets: [‘121.4.207.247:9104’]
- job_name: ‘cadvisor’
static_configs:- targets: [‘121.4.207.247:8091’]
就会报如下截图的错误:
求问这是什么原因引起的,是我服务器的问题么。假设跟服务器有关,我之前部署的其他容器都可以正常访问(jenkins、nignx等)。