We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sometimes http work and health check listen on different ports ,
like spring boot cloud http api request works on 8080, but actuator health works on 8888 port
so a router config like :
"active": { "http_path": "/actuator/health", "port": "8888", "host": "test", "healthy": { "interval": 2, "successes": 1 }, "unhealthy": { "interval": 1, "http_failures": 2 } }, "passive": { "healthy": { "http_statuses": [200], "successes": 3 }, "unhealthy": { "http_statuses": [503,404], "http_failures": 3, "tcp_failures": 3 } }
i did not find any health port define in https://github.com/apache/incubator-apisix/blob/master/apisix/schema_def.lua#L81
is it supported now ?
Originally posted by @souzens in #1809 (comment)
The text was updated successfully, but these errors were encountered:
yes, we can support this feature. it seems useful.
Sorry, something went wrong.
welcome PR
I will deal with this problem.
shuaijinchao
Successfully merging a pull request may close this issue.
sometimes http work and health check listen on different ports ,
like spring boot cloud
http api request works on 8080,
but actuator health works on 8888 port
so a router config like :
i did not find any health port define in https://github.com/apache/incubator-apisix/blob/master/apisix/schema_def.lua#L81
is it supported now ?
Originally posted by @souzens in #1809 (comment)
The text was updated successfully, but these errors were encountered: