forked from codecentric/spring-boot-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Create own Jackson module for Spring Boot Admin Server (codecentric#1404 … #5
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Fix code style issue * Create own Jackson module for Spring Boot Admin Server preparation for #1348
…sn't accidentally recognized as "homepath" fixes #1342
This commit adds a Jackson module, which allows for easy (de-)serialization of the InstanceEvents. fixes #1348
Co-authored-by: Sylvain Blanc <[email protected]>
closes #1417 Co-authored-by: Dušan Markovič <[email protected]>
Had to change some LegacyEndpointConvertersTest fixtures because of: https://github.com/FasterXML/jackson/wiki/Jackson-Release-2.11#changes-behavior
* had to remove Wiremock @rule as there is no official equivalent for JUnit5
closes #1428 Co-authored-by: Dušan Markovič <[email protected]>
When server.servlet.context-path is set the context-path is used as base href and therefore in order for the browser to correctly resolve the url the path for the extensions must not start with / fixes #1426
The logfile related property names to activate the logfile actuator endpoints have changed in Spring Boot 2.3.0. This commit updates the documentation to reflect this.
this fixes important beans for background tasks not being initialized when having lazy initialization enabled fixes #1444
When using eureka in combination with other service discovery implementations, we are more lenient by just using the default conversion for the health-url. fixes #1448
align with org.springframework.http.codec.FormHttpMessageReader#readMono
The Pyctuator project allows integrating Python web applications with Spring Boot Admin. This commit updates the documentation with a short example and pointers to further documentation on Pyctuator's main repository.
... in order to support consul closes #1456
when using org.springframework.core.io.buffer.DataBufferFactory#wrap(java.nio.ByteBuffer), the underground ByteBuf is wrapped, it'll cause use the released ByteBuf. which can be reproduced use a large size object. when not released as the last version, it also has the same problem when the body use more than once. Refer to org.springframework.core.codec.ByteBufferDecoder#decode
Currently, the DefaultServiceInstanceConverter is accessing the metadata to override the address, port and path for management access. There is not way to override the scheme, this is purely set based on getServiceUrl's scheme. With this change, the scheme is overridable too. Without setting management.scheme to override it, the previous behavior is not breaking.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Create own Jackson module for Spring Boot Admin Server (codecentric#1404 …