提问人:AwsmOfficial 提问时间:11/13/2023 更新时间:11/13/2023 访问量:23
Prometheus/BlackBox Exporter probe_success 0,但服务仍在运行
Prometheus/BlackBox Exporter probe_success 0 but service still running
问:
我目前正在使用 Prometheus 和 Blackbox Exporter 来监控我们的服务。但是,我遇到了一个问题,即我们的一个外部服务将 probe_success 显示为 0,尽管在使用 curl 测试时可以访问。
我的所有其他服务都受到正确监控。
在排除和解决此差异方面,我将不胜感激。 谢谢。 Prometheus 配置
- job_name: 'ExternalPartners_ICMP'
scrape_interval: 15s
metrics_path: /probe
params:
module: [http_2xx] # Look for a HTTP 200 response.
static_configs:
- targets:
- https://*/*.asmx #GazProm
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.
黑匣子配置
http_2xx:
prober: http
timeout: 5s
http:
valid_http_versions:
- HTTP/1.1
- HTTP/2
- HTTP/2.0
valid_status_codes: [200]
method: GET
no_follow_redirects: false
fail_if_ssl: false
fail_if_not_ssl: true
preferred_ip_protocol: "ip4"
ip_protocol_fallback: true
tls_config:
insecure_skip_verify: true
答: 暂无答案
评论