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
if you have a bean named statusHealthIndicator (a bit contrived) or you add a detail named status (much more likely) then bad things happen:
statusHealthIndicator
status
{ "status" : "UP", "diskSpace" : { "status" : "UP", "total" : 499046809600, "free" : 126894542848, "threshold" : 10485760 }, "dataSource" : { "status" : "UP", "database" : "HSQL Database Engine", "hello" : 1 }, "status" : { "status" : "UP", "status" : "Oops" } }
Note the duplicate status keys at both levels.
The possibility of clashes could be removed by separating the details (aggregated indicators or individual health details):
{ "status" : "UP", "details" : { "diskSpace" : { "status" : "UP", "details" : { "total" : 499046809600, "free" : 126893486080, "threshold" : 10485760 } }, "dataSource" : { "status" : "UP", "details" : { "database" : "HSQL Database Engine", "hello" : 1 } }, "status" : { "status" : "UP", "details" : { "status" : "Oops" } } } }
The text was updated successfully, but these errors were encountered:
8549336
wilkinsona
No branches or pull requests
if you have a bean named
statusHealthIndicator
(a bit contrived) or you add a detail namedstatus
(much more likely) then bad things happen:Note the duplicate
status
keys at both levels.The possibility of clashes could be removed by separating the details (aggregated indicators or individual health details):
The text was updated successfully, but these errors were encountered: