-
Notifications
You must be signed in to change notification settings - Fork 41.2k
Provide a property for configuring the base path of the Actuator's endpoints when using WebFlux #22906
New issue
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
Comments
Thanks for the report. |
I wonder if we should provide a single property, something like |
Yes, I think that would be a good solution, both for servlet and webflux |
Hi @philwebb!! the issue has changed from 'bug' to 'enhancement' and will be resolved for Spring Boot version 2.4.x, but the milestone 2.4.x has no release date. Is it impossible for it to be included in 2.3.x? Sorry for the insistence, but this problem is blocking our deployment. do you have an approximate date for the milestone 2.4.x? |
Spring Boot 2.4.0 is scheduled for 12 November. The issue was changed from a bug to an enhancement as the team quite rightly pointed out to me that the problem is due to a missing feature rather than a faulty implementation. |
Spring Boot 2.3.2.RELEASE
The settings for customization of monitoring endpoints described at this link do not work for Webflux applications.
According to the following configuration:
should display the monitoring at "http://localhost:9081/management/manage" but does so at "http://localhost:9081/manage", seems to disregard the "management.server.servlet.context-path" property.
For this other configuration:
works correctly the endpoint "http://localhost:9080/demowebflux/manage".
attached demo reproducing the problem.
demoWebflux.zip
The text was updated successfully, but these errors were encountered: