Skip to content
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

Correct config prefix in doc for excluding health checks #9321

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/se/health.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
///////////////////////////////////////////////////////////////////////////////

Copyright (c) 2019, 2023 Oracle and/or its affiliates.
Copyright (c) 2019, 2024 Oracle and/or its affiliates.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -364,7 +364,7 @@ Built-in health checks can be configured using the config property keys
described in this
<<built-in-health-checks-table,table>>. Further, you can suppress one or more of the built-in
health checks by setting the configuration item
`helidon.health.exclude` to a comma-separated list of the health check names
`health.exclude` to a comma-separated list of the health check names
(from this <<built-in-health-checks-table,table>>) you want to exclude.

== Examples
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2018, 2022 Oracle and/or its affiliates.
* Copyright (c) 2018, 2024 Oracle and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -33,7 +33,7 @@
* A health check that looks for thread deadlocks. Automatically created and registered via CDI.
* <p>
* This health check can be referred to in properties as {@code deadlock}. So for example, to exclude this
* health check from being exposed, use {@code helidon.health.exclude: deadlock}.
* health check from being exposed, use {@code health.exclude: deadlock}.
* </p>
*/
@Liveness
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2018, 2022 Oracle and/or its affiliates.
* Copyright (c) 2018, 2024 Oracle and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -56,7 +56,7 @@
*</p>
* <p>
* This health check can be referred to in properties as {@code diskSpace}. So for example, to exclude this
* health check from being exposed, use {@code helidon.health.exclude: diskSpace}.
* health check from being exposed, use {@code health.exclude: diskSpace}.
* </p>
*/
@Liveness
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2018, 2022 Oracle and/or its affiliates.
* Copyright (c) 2018, 2024 Oracle and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -44,7 +44,7 @@
* </p>
* <p>
* This health check can be referred to in properties as {@code heapMemory}. So for example, to exclude this
* health check from being exposed, use {@code helidon.health.exclude: heapMemory}.
* health check from being exposed, use {@code health.exclude: heapMemory}.
* </p>
*/
@Liveness
Expand Down
Loading