Skip to content

Commit

Permalink
fix(doc): admin urls
Browse files Browse the repository at this point in the history
Update 60_admin-server.adoc (missing /admin prefix)

Signed-off-by: Jérôme Prudent <[email protected]>
  • Loading branch information
jprudent authored and rlemaitre committed Nov 29, 2024
1 parent d07eda5 commit 3762306
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ The configuration is described in the xref:10_configuration.adoc#admin-configura

By default, the administration server is available on port `19876` and exposes the following endpoints:

* `GET /probes/healthz`: the liveness probe.
* `GET /admin/probes/healthz`: the liveness probe.
It always returns `200 OK` and can be used to check if the server is running.
* `GET /probes/health`: the readiness probe.
* `GET /admin/probes/health`: the readiness probe.
It returns `200 OK` if the server is ready to handle requests and all probes are successful.
See the xref:30_probes.adoc[Probes] section for more details.

Expand All @@ -33,4 +33,4 @@ See the xref:../30_modules/30_flags.adoc[Flags] section for the feature flags en

=== Defining administration endpoints

You can define administration endpoints easily by defining an `adminControllers` property in your `App`.
You can define administration endpoints easily by defining an `adminControllers` property in your `App`.

0 comments on commit 3762306

Please sign in to comment.