blackbox_exporter都能监控什么
时间: 2023-02-24 19:16:52 浏览: 131
Blackbox Exporter 是一个 Prometheus 监控工具,它可以监控以下内容:
1. 域名:监测域名的可用性以及 DNS 解析时间。
2. HTTP:监测 HTTP 响应状态,如是否存在 404 错误页面。
3. HTTPS:监测 HTTPS 响应状态,证书的有效期以及证书颁发者等。
4. TCP:监测 TCP 连接状态。
Blackbox Exporter 通过发送探针数据来监测目标主机,并将监测结果以指标的形式呈现给 Prometheus。
相关问题
使用blackbox_exporter监控百度网站的示例
blackbox_exporter是一个用于监控HTTP、HTTPS、DNS、ICMP等协议的组件,可以帮助您监控网站的可用性和响应时间。下面是使用blackbox_exporter监控百度网站的示例:
1. 安装blackbox_exporter:可以通过以下命令在Linux系统中安装blackbox_exporter:
```
wget https://github.com/prometheus/blackbox_exporter/releases/download/v0.16.0/blackbox_exporter-0.16.0.linux-amd64.tar.gz
tar xvf blackbox_exporter-0.16.0.linux-amd64.tar.gz
cd blackbox_exporter-0.16.0.linux-amd64/
```
2. 配置blackbox_exporter:创建一个配置文件,并在其中指定监控的URL:
```
# vi blackbox.yml
modules:
baidu:
prober: http
timeout: 5s
http:
valid_http_versions: ["HTTP/1.1", "HTTP/2"]
valid_status_codes: [200, 302]
method: GET
no_follow_redirects: false
tls_config:
insecure_skip_verify: false
metrics_path: /probe
params:
module: [baidu]
scrape_configs:
- job_name: 'baidu'
metrics_path: /probe
params:
module: [baidu]
static_configs:
- targets:
- 'www.baidu.com'
relabel_configs:
- source_labels: [__address__]
target_label: __param_target
- source_labels: [__param_target]
target_label: instance
- target_label: __address__
replacement: blackbox_exporter:9115
```
3. 启动blackbox_exporter:在终端中运行以下命令启动blackbox_exporter:
```
./blackbox_exporter --config.file=blackbox.yml
```
现在,您已经配置了blackbox_exporter来监控百度网站,并且可以在Prometheus中查看监控数据。
给我一个blackbox_exporter的监控示例
blackbox_exporter 是一个 Prometheus 监控工具,专门用于对黑盒系统进行监控。以下是一个使用 blackbox_exporter 监控 HTTP 服务的示例:
1. 安装 blackbox_exporter:
```
$ wget https://github.com/prometheus/blackbox_exporter/releases/download/v0.18.0/blackbox_exporter-0.18.0.linux-amd64.tar.gz
$ tar xvfz blackbox_exporter-0.18.0.linux-amd64.tar.gz
$ cd blackbox_exporter-0.18.0.linux-amd64
$ sudo mv blackbox_exporter /usr/local/bin/
```
2. 配置 blackbox_exporter:
创建一个配置文件,例如 `blackbox.yml`:
```
modules:
http_2xx:
prober: http
timeout: 5s
http:
valid_http_versions: ["HTTP/1.1", "HTTP/2"]
method: GET
no_follow_redirects: false
fail_if_ssl: false
scrape_configs:
- job_name: http
metrics_path: /probe
params:
module: [http_2xx]
static_configs:
- targets:
- http://www.example.com
- https://www.example.com
relabel_configs:
- source_labels: [__address__]
target_label: __param_target
- source_labels: [__param_target]
target_label: instance
- target_label: __address__
replacement: localhost:9115
```
3. 启动 blackbox_exporter:
```
$ blackbox_exporter --config.file=blackbox.yml
```
4. 配置 Prometheus:
在 Prometheus 的配置文件中添加如下内容:
```
scrape_configs:
- job_name: blackbox
metrics_path: /probe
params:
module: [http_2xx]
static_configs:
- targets:
- http://localhost:9115
relabel_configs:
- source_labels: [__address__]
target_label: __param_target
- source_labels: [__param_module]
target_label: __metrics_path__
replacement: /probe
```
这样,Prometheus 就可以定期从 blackbox_exporter 获取监控
阅读全文