diff options
author | Achilleas Pipinellis <axil@gitlab.com> | 2019-05-27 15:55:20 +0000 |
---|---|---|
committer | Achilleas Pipinellis <axil@gitlab.com> | 2019-05-27 15:55:20 +0000 |
commit | 14e73771df55db4ce227c970cc4a3b0e7eacaa93 (patch) | |
tree | 89e842e67246090eaa59f266fbd3a225b52c336a | |
parent | 71985c064eeff968513a0574b85cfdc86ef1581e (diff) | |
parent | b6ceb5aa4d491a4613649e1b313dbfd4654d0ffa (diff) | |
download | gitlab-ce-14e73771df55db4ce227c970cc4a3b0e7eacaa93.tar.gz |
Merge branch 'docs/fix-note-list' into 'master'
Fix formatting of health check info
See merge request gitlab-org/gitlab-ce!28761
-rw-r--r-- | doc/user/admin_area/monitoring/health_check.md | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/doc/user/admin_area/monitoring/health_check.md b/doc/user/admin_area/monitoring/health_check.md index 43e35505e36..ff056490653 100644 --- a/doc/user/admin_area/monitoring/health_check.md +++ b/doc/user/admin_area/monitoring/health_check.md @@ -4,13 +4,11 @@ type: concepts, howto # Health Check -> NOTE: **Note:** -> -> - Liveness and readiness probes were [introduced][ce-10416] in GitLab 9.1. -> - The `health_check` endpoint was [introduced][ce-3888] in GitLab 8.8 and was -> be deprecated in GitLab 9.1. -> - [Access token](#access-token-deprecated) has been deprecated in GitLab 9.4 -> in favor of [IP whitelist](#ip-whitelist). +> - Liveness and readiness probes were [introduced][ce-10416] in GitLab 9.1. +> - The `health_check` endpoint was [introduced][ce-3888] in GitLab 8.8 and was +> be deprecated in GitLab 9.1. +> - [Access token](#access-token-deprecated) has been deprecated in GitLab 9.4 +> in favor of [IP whitelist](#ip-whitelist). GitLab provides liveness and readiness probes to indicate service health and reachability to required services. These probes report on the status of the @@ -33,7 +31,7 @@ With default whitelist settings, the probes can be accessed from localhost using The first endpoint, `health`, only checks whether the application server is running. It does not verify the database or other services are running. A successful response will return a 200 status code with the following message: -``` +```text GitLab OK ``` @@ -101,7 +99,7 @@ accepted token can be found under the **Admin area ➔ Monitoring ➔ Health che The access token can be passed as a URL parameter: -``` +```text https://gitlab.example.com/-/readiness?token=ACCESS_TOKEN ``` @@ -122,4 +120,4 @@ but commented out to help encourage others to add to it in the future. --> [pingdom]: https://www.pingdom.com [nagios-health]: https://nagios-plugins.org/doc/man/check_http.html [newrelic-health]: https://docs.newrelic.com/docs/alerts/alert-policies/downtime-alerts/availability-monitoring -[kubernetes]: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/
\ No newline at end of file +[kubernetes]: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/ |