Files
nexus/wiki/concepts/合成监测.md
weishen 5789476c23 Batch ingest: Multi-Agent Team / DevOps Maturity / 一语点醒梦中人 / NodeWarden
Sources:
- Agent-usecases-multi-Agent-Team.md
- DevOps-Maturity-Model-From-Traditional-IT-to-Advanced-DevOps.md
- AI-一语点醒梦中人.md
- Home-Office-NodeWarden-把-Bitwarden-搬上-Cloudflare-Workers彻底告别服务器.md

Entities: Trebuh, Cloudflare
Concepts: DevOps成熟度模型, 共享内存模式, 空性智慧, 绝处逢生
2026-04-15 18:05:17 +08:00

1.2 KiB
Raw Blame History

title, type, tags, sources, last_updated
title type tags sources last_updated
合成监测 concept
monitoring
uptime
availability
2026-04-15

定义

Synthetic Monitoring通过主动发起探测请求HTTP/TCP/DNS/TLS模拟用户行为检测服务可用性和性能。与 Real User MonitoringRUM相对。

核心指标

  • probe_success探测是否成功0/1
  • probe_duration_seconds:探测响应时间
  • probe_http_status_codeHTTP 响应码
  • probe_ssl_earliest_cert_expiryTLS 证书到期时间戳

工具对比

工具 类型 特点
blackbox_exporter Prometheus 生态 细粒度 PromQL 指标,适合内嵌 Grafana
Uptime Kuma 独立开源 友好 UI适合外网监控

在 Wiki 中的角色

告警规则

# 站点不可达连续2分钟
probe_success == 0 for 2m

# TLS证书14天内到期
probe_ssl_earliest_cert_expiry - time() < 86400 * 14