Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个不面向 HTTP 集群的 haproxy 设置。我如何询问 haproxy 哪些节点当前在健康列表中,哪些被认为是不健康的?
我找到了“stats”命令,但这仅适用于 HTTP 流量
您可以向前端添加一个额外的端口(例如 8080)并仅为该后端启用统计信息。
frontend bind *:123,*:8080 acl is_stats dst_port 8080 use_backend stats if is_stats default_backend your_TCP_backend backend stats stats enable