Skip to content

Commit

Permalink
Correct config prefix in doc for excluding health checks (#9321)
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Quinn <[email protected]>
  • Loading branch information
tjquinno authored Oct 3, 2024
1 parent fcaea1c commit c7c9a6e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
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

0 comments on commit c7c9a6e

Please sign in to comment.