When using Smallrye health check, an endpoint like /q/health
will be automatically added to the base URI. I would like to prevent someone ddossing this endpoint, so he cannot tear down databases or other services linked to this health check.
For customer endpoints, you can use the smallrye-fault-tolerance with @RateLimit
annotation. But can this be used for automatic endpoints like /q/health as well? If not, what is the solution to prevent ddos like requests on the health endpoint?