This is an automated email from the ASF dual-hosted git repository.
ghenzler pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-site.git
The following commit(s) were added to refs/heads/master by this push:
new 71e63c6 Fix links in HC documentation
71e63c6 is described below
commit 71e63c631f76458e4fb3b1dbb4a9bec08ddf8745
Author: georg.henzler <[email protected]>
AuthorDate: Tue Oct 27 23:34:03 2020 +0100
Fix links in HC documentation
---
.../jbake/content/documentation/bundles/sling-health-checks.md | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git
a/src/main/jbake/content/documentation/bundles/sling-health-checks.md
b/src/main/jbake/content/documentation/bundles/sling-health-checks.md
index e046088..805b92b 100644
--- a/src/main/jbake/content/documentation/bundles/sling-health-checks.md
+++ b/src/main/jbake/content/documentation/bundles/sling-health-checks.md
@@ -12,13 +12,13 @@ It is best practice to place health check next to the
functionality they check.
The below checks are exceptions to that rule as they are generic in what they
check (but still require Sling features, that's whey they are not in Apache
Felix).
-# Apache Sling Health Check Support Module
+# Apache Sling Health Check Support Bundle
Check | PID | Factory | Description
--- | --- | --- | ---
-Default Logins Check | org.apache.sling.hc.support.DefaultLoginsHealthCheck |
yes | Set a list of default logins in config array `logins` separed by `:`,
e.g. `author:author`
-Scripted Check | org.apache.felix.hc.generalchecks.ScriptedHealthCheck | yes |
Allows to run an arbitrary script in the same way as the Scripted Check from
from Apache Felix bundle [general
checks](https://github.com/apache/felix/blob/trunk/healthcheck/README.md#general-purpose-health-checks-available-out-of-the-box),
except that this check allows to use files being loaded from JCR by using a
`scriptUrl` with prefix `jcr:`, e.g. `jcr:/apps/ops/my-custom-check.groovy`
-Request Status Health Check | *Deprecated* | | Use instead the corresponding
check from [general
checks](https://github.com/apache/felix/blob/trunk/healthcheck/README.md#general-purpose-health-checks-available-out-of-the-box)
+Default Logins Check | org.apache.sling.hc.support.DefaultLoginsHealthCheck |
yes | Set a list of default logins in config array `logins` separated by `:`,
e.g. `author:author`
+Scripted Check | org.apache.sling.hc.support.impl.ScriptedHealthCheck | yes |
Allows to run an arbitrary script in the same way as the Scripted Check
`org.apache.felix.hc.generalchecks.ScriptedHealthCheck` from Apache Felix
bundle [general
checks](https://github.com/apache/felix-dev/blob/master/healthcheck/README.md#general-purpose-health-checks-available-out-of-the-box),
except that this check allows to use files being loaded from JCR by using a
`scriptUrl` with prefix `jcr:`, e.g. `jcr [...]
+Request Status Health Check | *Deprecated* | | Use instead the corresponding
check from [general
checks](https://github.com/apache/felix-dev/blob/master/healthcheck/README.md#general-purpose-health-checks-available-out-of-the-box)
# Health Checks as server-side JUnit tests
The `org.apache.sling.hc.junit.bridge` bundle makes selected Health Checks
available as server-side JUnit tests.