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
main.java: ObserveFeature observe = ObserveFeature.builder() .config(config.get("server.features.observe")) .addObserver(HealthObserver.builder() .addCheck(DbClientHealthCheck.create(dbClient, config.get("db.health-check"))) .build()) .build(); applicationyaml: server: port: 8080 host: 0.0.0.0
app: greeting: "Hello"
Reproducing the environment: https://github.com/essapp/server
The text was updated successfully, but these errors were encountered:
Thanks for catching this.
This property can be used to customized observability : https://helidon.io/docs/v4/se/observability
Sorry, something went wrong.
tvallin
Successfully merging a pull request may close this issue.
Environment Details
Problem Description
main.java:
ObserveFeature observe = ObserveFeature.builder()
.config(config.get("server.features.observe"))
.addObserver(HealthObserver.builder()
.addCheck(DbClientHealthCheck.create(dbClient, config.get("db.health-check")))
.build())
.build();
applicationyaml:
server:
port: 8080
host: 0.0.0.0
app:
greeting: "Hello"
Steps to reproduce
Reproducing the environment:
https://github.com/essapp/server
The text was updated successfully, but these errors were encountered: