打开prometheus.yml文件,该文件通常位于Prometheus安装目录下的conf或etc文件夹中。 在scrape_configs部分中,添加一个新的job配置块,用于指定要监控的目标IP。 在新的job配置块中,设置job_name参数为一个描述性的名称,用于标识该监控任务。 在static_configs下的targets参数中,指定要监控的特定IP地址和端口号。可...
static_configs: - targets: ['192.168.0.142:9100']#配置应用节点IP和端口号,如果监控多个节点,用逗号隔开 b.保存后重启普罗米修斯容器:docker restart prometheus 注意:每次修改prometheus.yml配置文件时,都需要重启普罗米修斯才能使配置文件生效 c.检查普罗米修斯与应用节点是否连接起来:访问普罗米修斯页面:prometheus所在IP...
- job_name: 'prometheus' static_configs: - targets: ['xxx.xxx.x.xx:9090'] 配置文件发现 第一段代码是放在prometheus.yml的scrape_config内,第二段代码是保存在/opt/prometheus/monitor_config/目录下,名称可以写被监控的机器ip文件为yml文件,如10.172.12.12.yml - job_name: 'zx_host' file_sd_configs...
在prometheus.yml文件中进行配置业务系统采集点,5s 拉取一次指标,由于prometheus server 部署在docker 中,所以访问主机IP 用host.docker.internal #业务系统监控 - job_name: 'SpringBoot' # Override the global default and scrape_interval: 5s metrics_path: '/actuator/prometheus' static_configs: - targets: ...
static_configs: # 指定要抓取的目标地址 -targets: ['localhost:9090','localhost:9191'] # 给抓取出来的所有指标添加指定的标签 labels: my: label your: label 1. 2. 3. 4. 5. 6. 7. 8. 2. file_sd_configs: 基于文件的自动发现,prometheus会定期读取文件中的配置并重新加载,文件可以是yml、yaml和...
- foo/*.slow.yml - single/file.yml refresh_interval: 10m # 刷新文件的 时间间隔 - files: - bar/*.yaml # 使用job名作为label的 静态配置目录 的 列表 static_configs: - targets: ['localhost:9090', 'localhost:9191'] labels: my: label ...
static_configs: - targets: ['localhost:8000'] 2.为了避免采集点太多,可以指定一个额外的配置文件来存储(可以热加载),相当于是基于文件的服务发现。 prometheus.yml: scrape_configs: # The job name is added as a label `job=<job_name>` to any timeseries scraped from this config. ...
alertmanagers:-static_configs:-targets: #- alertmanager:9093# Load rules once and periodically evaluate them according to the global'evaluation_interval'. rule_files: # 规则文件列表 #-"first_rules.yml"#-"second_rules.yml"# A scrape configuration containing exactly one endpoint to scrape: ...
prometheus.yml具体的配置如下: global: scrape_interval: 15s evaluation_interval: 15s alerting: alertmanagers: - static_configs: - targets: rule_files: scrape_configs: - job_name: "node" static_configs: - targets: ["192.168.x.x:9100"] ...
static_configs: - targets: ['localhost:8084'] 重新启动Prometheus Server。具体操作,请参见上文的步骤一。 在Prometheus内置的监控管理工作台输入up指令后单击Execute,启动数据访问端口。 状态为1,表示端口已启动。 步骤四:在Prometheus的Graph中查看数据