首页 > 其他分享 >Prometheus笔记-安装blackbox_exporter

Prometheus笔记-安装blackbox_exporter

时间:2023-01-17 14:00:35浏览次数:46  
标签:exporter blackbox amd64 0.23 Prometheus linux http

Blackbox Exporter是Prometheus社区提供的官方黑盒监控解决方案,其允许用户通过:HTTP、HTTPS、DNS、TCP以及ICMP 的方式对网络进行探测。我们可以利用这个exporter定时访问业务系统某个接口来确定服务是否存活

下载

[root@VM-24-9-centos exporter_package]# wget https://ghproxy.com/https://github.com/prometheus/blackbox_exporter/releases/download/v0.23.0/blackbox_exporter-0.23.0.linux-amd64.tar.gz
--2023-01-09 21:26:39--  https://ghproxy.com/https://github.com/prometheus/blackbox_exporter/releases/download/v0.23.0/blackbox_exporter-0.23.0.linux-amd64.tar.gz
Resolving ghproxy.com (ghproxy.com)... 141.147.152.25
Connecting to ghproxy.com (ghproxy.com)|141.147.152.25|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 10831812 (10M) [application/octet-stream]
Saving to: ‘blackbox_exporter-0.23.0.linux-amd64.tar.gz’

100%[===========================================================================================================================================>] 10,831,812  2.25MB/s   in 5.2s   

2023-01-09 21:26:46 (1.97 MB/s) - ‘blackbox_exporter-0.23.0.linux-amd64.tar.gz’ saved [10831812/10831812]

安装

# 解压
[root@VM-24-9-centos exporter_package]# tar -zxvf blackbox_exporter-0.23.0.linux-amd64.tar.gz 
blackbox_exporter-0.23.0.linux-amd64/
blackbox_exporter-0.23.0.linux-amd64/blackbox.yml
blackbox_exporter-0.23.0.linux-amd64/LICENSE
blackbox_exporter-0.23.0.linux-amd64/NOTICE
blackbox_exporter-0.23.0.linux-amd64/blackbox_exporter

# 备份配置文件
[root@VM-24-9-centos exporter_package]# cd blackbox_exporter-0.23.0.linux-amd64/
[root@VM-24-9-centos blackbox_exporter-0.23.0.linux-amd64]# ls
blackbox_exporter  blackbox.yml  LICENSE  NOTICE
[root@VM-24-9-centos blackbox_exporter-0.23.0.linux-amd64]# cp blackbox.yml blackbox.yml_init
[root@VM-24-9-centos blackbox_exporter-0.23.0.linux-amd64]# ls
blackbox_exporter  blackbox.yml  blackbox.yml_init  LICENSE  NOTICE

blackbox_exporter配置文件demo

scrape_configs:
  - job_name: 'blackbox'
    metrics_path: /probe
    params:
      module: [http_2xx]  # 加载一个模块为http_2xx的模块,这个模块用于查看http状态为200的响应
    static_configs:
      - targets:
        - http://prometheus.io    # 目标地址为http协议
        - https://prometheus.io   # 目标地址为https协议
        - http://example.com:8080 # 目标地址为http协议且端口为8080
    relabel_configs:
      - source_labels: [__address__]
        target_label: __param_target
      - source_labels: [__param_target]
        target_label: instance
      - target_label: __address__
        replacement: 127.0.0.1:9115  # The blackbox exporter's real hostname:port.

修改black_exporter配置文件

[root@VM-24-9-centos blackbox_exporter-0.23.0.linux-amd64]# vi blackbox.yml
modules:
  http_2xx:# 这个名字需要和Prometheus中的params对应
    prober: http # 探针类型:http tcp  dns  icmp
    timeout: 10s

新增Prometheus配置文件job_name

  - job_name: "blackbox_exporter"
    metrics_path: /probe # 默认为/probe
    params:
      module: [http_2xx] # 加载一个模块为http_2xx的模块,这个模块用于查看http状态为200的响应
    static_configs:
      - targets: # 要监控的目标地址
        - http://www.baidu.com/
        - http://prometheus.io
    relabel_configs: # 以下内容不要修改
      - source_labels: [__address__]
        target_label: __param_target
      - source_labels: [__address__]
        target_label: instance
      - target_label: __address__
        replacement: localhost:9115 # 该地址为blackbox_exporter服务的ip及端口

启动

[root@VM-24-9-centos exporter_package]# cd blackbox_exporter-0.23.0.linux-amd64/
[root@VM-24-9-centos blackbox_exporter-0.23.0.linux-amd64]# ./blackbox_exporter --config.file="blackbox.yml"
ts=2023-01-09T14:39:45.219Z caller=main.go:78 level=info msg="Starting blackbox_exporter" version="(version=0.23.0, branch=HEAD, revision=26fc98b9c6db21457653ed752f34d1b7fb5bba43)"
ts=2023-01-09T14:39:45.219Z caller=main.go:79 level=info build_context="(go=go1.19.3, user=root@f360719453e3, date=20221202-12:26:32)"
ts=2023-01-09T14:39:45.220Z caller=main.go:91 level=info msg="Loaded config file"
ts=2023-01-09T14:39:45.220Z caller=tls_config.go:232 level=info msg="Listening on" address=[::]:9115
ts=2023-01-09T14:39:45.220Z caller=tls_config.go:235 level=info msg="TLS is disabled." http2=false address=[::]:9115

# 把blackbox_exporter服务挂到后台
nohup ./blackbox_exporter --config.file="blackbox.yml" &

显示效果

这里正好对应上面新增的两个监控目标

image.png

标签:exporter,blackbox,amd64,0.23,Prometheus,linux,http
From: https://www.cnblogs.com/jruing/p/17057656.html

相关文章

  • Prometheus笔记-监控docker容器
    docker安装google/cadvisor[root@VM-24-9-centos~]#dockerpullgoogle/cadvisorUsingdefaulttag:latestlatest:Pullingfromgoogle/cadvisorff3a5c916c92:Pul......
  • Prometheus笔记-安装Node_exporter
    Node_exporter是可以在*Nix和Linux系统上运行的计算机度量标准的导出器。Node_exporter主要用于暴露metrics给Prometheus,其中metrics包括:cpu的负载,内存的使用情......
  • Prometheus笔记-安装
    官网https://prometheus.io/docs/introduction/overview/下载Prometheushttps://prometheus.io/download/安装Prometheus配置文件#myglobalconfigglobal:......
  • Prometheus笔记-Label标签
    LabelLable是为了方便管理及查询监控目标,在后续写promtheus查询语法的时候需要使用标签作为查询条件配置文件#Ascrapeconfigurationcontainingexactlyoneendpoin......
  • Prometheus笔记-file_sd_config
    一般一个job作为一个业务服务,它下面的监控的机器/节点都是这个服务的节点,为了方便管理,我们可以按照job划分,为每个job创建一个子配置文件,这样方便管理配置文件#myglob......
  • Prometheus由于时间不同步导致数据不显示
    问题部署prometheus后,访问前端界面发现:这是由于你windows机器与部署prometheus服务器的​​时间不同步​​导致的。解决在服务器执行如下命令:ntpdatentp.aliyun.com就能......
  • Prometheus Operator配置Alertmanager告警
    1、管理Alertmanagerconfiguration1.1方式一,使用存储在Kubernetessecret中的本地Alertmanager配置文件1、编写alertmanager配置alertmanager.yamlroute:group_by......
  • 安装prometheus
    一直想记录一下prometheus的安装过程,但好像一直都挺懒,不管怎么说简单记录下。只是基础版监控,没有整jvm探针,没有告警。1.已安装wget,有公网环境。1.1直接wgethttps://gi......
  • Thanos 配置Prometheus的高可用 (一)
    标签(空格分隔):Prometheus系列一:Prometheus的介绍与架构1.1Prometheus的概述1.prometheus的介绍Prometheus是一个开源的系统监控和告警工具包,最初由SoundCloud开......
  • Prometheus配置飞书告警
       1、通过PrometheusAlert全家桶对接飞书告警,PrometheusAlert全家桶安装步骤https://github.com/feiyu563/PrometheusAlert  2、配置alermanager告警服务[......