手把手教你搭建高逼格监控平台,第四弹,监控主机存活状态
1、安装pie chart插件
进入grafana的bin目录下,执行命令:
./grafana-cli plugins install grafana-piechart-panel
2、修改grafana配置文件
vim grafana下conf下的defaults.ini
把plugins = data/plugins改为plugins = /var/lib/grafana/plugins
kill之后重启grafana
3、安装blackbox
blackbox_exporter 是 Prometheus 官方提供的官方黑盒监控解决方案,其中 exporter 之一,可以提供 http(s)、dns、tcp、icmp 的方式对网络进行探测。
下载安装包并解压
(
https://github.com/prometheus/blackbox_exporter/releases),进入解压后的文件执行如下命令:
nohup ./blackbox_exporter --config.file=blackbox.yml &
4、配置prometheus.yml,添加如下内容
#blackbox-job_name:"blackbox"metrics_path:/probeparams:module:[http_2xx]# Look for a HTTP 200 response.file_sd_configs:-refresh_interval:1mfiles:-"/opt/prometheus-2.27.1.linux-amd64/sd_cfg/blackbox*.yml"relabel_configs:-source_labels:[__address__]target_label:__param_target-source_labels:[__param_target]target_label:instance-target_label:__address__replacement:192.168.224.129:9115#blackbox服务所在的机器
在之前创建的sd_cfg目录下创建blackbox-dis.yml,内容如下
- targets: - http://www.xqtesting.com - http://www.baidu.com
重启prometheus服务
5、grafana中import模板9965即可