六、HTTP Post 监控(监控外部域名) - job_name: 'blackbox-http-post' metrics_path: /probe params: module: [http_post_2xx]static_configs: - targets: - https://www.example.com/api # 要检查的网址 relabel_configs: - source_labels: [__address__] target_label: __param_target - source_la...
modules:xhj_login: # 模块名称,prometheus配置文件中要匹配prober: http # 协议timeout: 30s # 超时时间http: # 模块的采集协议method: POST # http请求的方法preferred_ip_protocol:"ip4"# 使用的ipv4协议headers: # 配置post请求的header头Content-Type: application/jsonbody:''{"mobile":"13572801829","pass...
接口监控的方法很多,可以用链路监控,可以写脚本进行监控 由于监控整体采用的是prometheus,所以这里就直接用blackbox_exporter来做接口的监控 blackbox_exporter可以通过http、https、dns、tcp、ICMP对target进行探测,dns、tcp、ICMP都相对简单,我这边主要是要监控一个登录接口,所以要用https来进行探测,具体配置方法如下 部...
curl-v --request POST'http://localhost:9090/-/reload' 第三步:更新完配置后,我们可以通过 Post 请求的方式,动态更新配置。 原理:Prometheus 在 web 模块中,注册了一个 handler。 ifo.EnableLifecycle { router.Post("/-/quit", h.quit) router.Put("/-/quit",...
http: method: GET 1. 2. 3. 4. 5. 6. 7. 启动blackbox_exporter ./blackbox_exporter --config.file=blackbox.yml 1. prometheus添加监控项 - job_name: blackbox-exporter params: module: - http_post_2xx target: - www.csdn.net
创建配置文件,config.yml中监控方式用不到的可以删除,例如pop3、ssh之类 mkdir/data/blackbox_exporter/cat>/data/blackbox_exporter/config.yml<<"EOF"modules: http_2xx: prober: http http: method: GET http_post_2xx: prober: http http: method: POST ...
由于监控整体采用的是prometheus,所以这里就直接用blackbox_exporter来做接口的监控 blackbox_exporter可以通过http、https、dns、tcp、ICMP对target进行探测,dns、tcp、ICMP都相对简单,我这边主要是要监控一个登录接口,所以要用https来进行探测,具体配置方法如下 ...
curl -v --request POST 'http://localhost:9090/-/reload' 第三步:更新完配置后,我们可以通过Post请求的方式,动态更新配置: 原理: Prometheus在web模块中,注册了一个handler: if o.EnableLifecycle {router.Post("/-/quit", h.quit)router.Put("/-/quit", h.quit)router.Post("/-/reload", h.reload...
URL监控通过blackbox-exporter组件监控,组件部署位置192.168.0.39。 创建组件配置文件 代码语言:javascript 复制 vim/data/prometheus_dir/blackbox_exporter/blackbox.ymlmodules:http_2xx:prober:httphttp_post_2xx:prober:httphttp:method:POSTtcp_connect:prober:tcppop3s_banner:prober:tcptcp:query_response:-expect...