lua-resty-upstream-healthcheck icon indicating copy to clipboard operation
lua-resty-upstream-healthcheck copied to clipboard

Health Checker for Nginx Upstream Servers in Pure Lua

Results 48 lua-resty-upstream-healthcheck issues
Sort by recently updated
recently updated
newest added

Hi, On several of our servers we use the "healthcheck" module, unfortunately something is wrong because after a while, the messages start to appear: "failed to create timer: too many...

Guys, I’ve followed module recommendation for [multiple upstreams](https://github.com/openresty/lua-resty-upstream-healthcheck#multiple-upstreams). Error log has messages like: _[error] 193#193: *118495174 [lua] healthcheck.lua:53: errlog(): healthcheck: failed to receive status line from **10.0.0.1:80**: timeout, context: ngx.timer...

Would it be possible to add upstream name to log message to distinguish among multiple upstreams with same server. Namely, change current message from _healthcheck: failed to receive status line...

https://github.com/openresty/lua-resty-upstream-healthcheck/blob/26bad5df8131d93c6f06011cce82b80929ad8340/lib/resty/upstream/healthcheck.lua#L623 I change this in https://github.com/openresty/lua-resty-upstream-healthcheck/pull/68

I introduce this module to my project but got 400 error for the invalid http_req. local ok, err = hc.spawn_checker{ shm = "healthcheck", -- defined by "lua_shared_dict" upstream = "foo.com",...

Hi All, I had build the nginx binary on rhel 7.6 ppc64le (version 1.17.1.1rc0) from source code - https://github.com/openresty/openresty. Please note that, I had copied and used ppc64le compiled LuaJIT...

my code in nginx.conf ``` upstream swordnet.com{ server 127.0.0.1:18080;#two tomcats have bean started server 127.0.0.1:28080; } ``` lua_shared_dict ngx_stats 500m; lua_shared_dict healthcheck 1m; lua_socket_log_errors off; init_worker_by_lua_block { local hc =...

This doesn't seem to support upstreams that require ssl connections. Is there any plans to expand this beyond pure http tests? Or any suggestions on how I could work around...

Hi All; I'm developed some lines of code for search some string in response body and decide this upstream member is up or down. I hope to this feature will...

use curl for test ` ``` curl http://127.0.0.1/status curl: (52) Empty reply from server ``` ` and log is: ` ``` 2016/03/02 13:50:01 [error] 18864#0: *150 lua entry thread aborted:...