diff options
author | Jose Ivan Vargas <jvargas@gitlab.com> | 2017-05-15 13:07:47 -0500 |
---|---|---|
committer | Jose Ivan Vargas <jvargas@gitlab.com> | 2017-05-16 11:49:24 -0500 |
commit | 94a6c0ded0e1d938c92510f2c4fbb343e1e885a9 (patch) | |
tree | 7fcbf4e08cc16fd19cdac7eaaa01954104d64687 | |
parent | e402000b938a7f08f7d18a3285abffe281738334 (diff) | |
download | gitlab-ce-94a6c0ded0e1d938c92510f2c4fbb343e1e885a9.tar.gz |
Removed old endpoints from the monitoring viewupdate-admin-health-page
-rw-r--r-- | app/views/admin/health_check/show.html.haml | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/app/views/admin/health_check/show.html.haml b/app/views/admin/health_check/show.html.haml index 39b1fb33c3c..4deccf4aa93 100644 --- a/app/views/admin/health_check/show.html.haml +++ b/app/views/admin/health_check/show.html.haml @@ -16,25 +16,10 @@ = icon('spinner') Reset health check access token %p.light - Health information can be retrieved as plain text, JSON, or XML using: + Health information can be retrieved from the following endpoints. More information is available + = link_to 'here', help_page_path('user/admin_area/monitoring/health_check') %ul %li - %code= health_check_url(token: current_application_settings.health_check_access_token) - %li - %code= health_check_url(token: current_application_settings.health_check_access_token, format: :json) - %li - %code= health_check_url(token: current_application_settings.health_check_access_token, format: :xml) - - %p.light - You can also ask for the status of specific services: - %ul - %li - %code= health_check_url(token: current_application_settings.health_check_access_token, checks: :cache) - %li - %code= health_check_url(token: current_application_settings.health_check_access_token, checks: :database) - %li - %code= health_check_url(token: current_application_settings.health_check_access_token, checks: :migrations) - %li %code= readiness_url(token: current_application_settings.health_check_access_token) %li %code= liveness_url(token: current_application_settings.health_check_access_token) |