nginx_upstream_check_module icon indicating copy to clipboard operation
nginx_upstream_check_module copied to clipboard

Health checks upstreams for nginx

Results 106 nginx_upstream_check_module issues
Sort by recently updated
recently updated
newest added

nginx-1.19.0是否兼容该版本

Fix TCP check bugs, change to no-keepalive mode When connection between nginx-tcp-checker and upstream lost, such as connection down / upstream machine hardware down / switch down, TCP check can't...

upstream配置如下: upstream tradeBank-server{ server X.X.X.155:9080; server X.X.X.156:9080; check interval=3000 rise=2 fall=5 timeout=1000 type=http; check_http_send "GET /tradeBank/check.html HTTP/1.0\r\n\r\n"; check_http_expect_alive http_2xx http_3xx; } [健康检查配置如下:](url) location /status { check_status; access_log off; } web页面显示如下...

I'm using the latest version of this module with v1.8.0 of nginx. - nginx + SSL running on a VPS in the USA (load balancer) - Application server running on...

请问如果nginx用yum安装的没有源码,需要怎么添加这个模块? 这个可以弄成动态模块加进去吗?

Hi, 是否可以添加prometheus的输出格式,这样就可以通过prometheus来监控nginx upstream的状态?

1.20.1打patch后 后端server不可用日志如下: 2021/08/24 13:43:21 [error] 763346#0: send() failed (111: Connection refused) 1.12.1打patch后 后端server不可用日志如下: 2021/08/24 15:01:59 [error] 17871#0: check time out with peer: 10.8.20.3:6001 如果能跟1.12.1就更好了

I use http-type check to trace health of upstreams. Sometimes module wrongly marks upstream as failed although it gets 200 OK. By checking dump I noticed the following things: -...

nginx/1.17.9 built by gcc 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) built with OpenSSL 1.0.2k-fips 26 Jan 2017 TLS SNI support enabled configure arguments: --with-http_ssl_module --with-pcre --with-http_stub_status_module --add-module=../nginx_upstream_check_module-master/ 健康检查配置监控: location /upstream_status...