Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
fcbcc9d3
Commit
fcbcc9d3
authored
Jul 01, 2019
by
Phillip Webb
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '2.1.x'
Closes gh-17387
parents
35a178ab
a81f37dd
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
caches.adoc
...tor-autoconfigure/src/main/asciidoc/endpoints/caches.adoc
+2
-2
health.adoc
...tor-autoconfigure/src/main/asciidoc/endpoints/health.adoc
+2
-2
sessions.adoc
...r-autoconfigure/src/main/asciidoc/endpoints/sessions.adoc
+2
-2
index.adoc
...-boot-actuator-autoconfigure/src/main/asciidoc/index.adoc
+2
-2
No files found.
spring-boot-project/spring-boot-actuator-autoconfigure/src/main/asciidoc/endpoints/caches.adoc
View file @
fcbcc9d3
...
@@ -30,7 +30,7 @@ include::{snippets}caches/all/response-fields.adoc[]
...
@@ -30,7 +30,7 @@ include::{snippets}caches/all/response-fields.adoc[]
[[caches-named]]
[[caches-named]]
== Retrieving Caches by Name
== Retrieving Caches by Name
To retrieve a cache by name, make a `GET` request to `/actuator/caches/{name}`,
To retrieve a cache by name, make a `GET` request to `/actuator/caches/
\
{name}`,
as shown in the following curl-based example:
as shown in the following curl-based example:
include::{snippets}caches/named/curl-request.adoc[]
include::{snippets}caches/named/curl-request.adoc[]
...
@@ -74,7 +74,7 @@ include::{snippets}caches/evict-all/curl-request.adoc[]
...
@@ -74,7 +74,7 @@ include::{snippets}caches/evict-all/curl-request.adoc[]
[[caches-evict-named]]
[[caches-evict-named]]
== Evict a Cache by Name
== Evict a Cache by Name
To evict a particular cache, make a `DELETE` request to `/actuator/caches/{name}` as shown
To evict a particular cache, make a `DELETE` request to `/actuator/caches/
\
{name}` as shown
in the following curl-based example:
in the following curl-based example:
include::{snippets}caches/evict-named/curl-request.adoc[]
include::{snippets}caches/evict-named/curl-request.adoc[]
...
...
spring-boot-project/spring-boot-actuator-autoconfigure/src/main/asciidoc/endpoints/health.adoc
View file @
fcbcc9d3
...
@@ -30,7 +30,7 @@ include::{snippets}health/response-fields.adoc[]
...
@@ -30,7 +30,7 @@ include::{snippets}health/response-fields.adoc[]
[[health-retrieving-component]]
[[health-retrieving-component]]
== Retrieving the Health of a component
== Retrieving the Health of a component
To retrieve the health of a particular component of the application, make a `GET` request
To retrieve the health of a particular component of the application, make a `GET` request
to `/actuator/health/{component}`, as shown in the following curl-based example:
to `/actuator/health/
\
{component}`, as shown in the following curl-based example:
include::{snippets}health/component/curl-request.adoc[]
include::{snippets}health/component/curl-request.adoc[]
...
@@ -54,7 +54,7 @@ include::{snippets}health/component/response-fields.adoc[]
...
@@ -54,7 +54,7 @@ include::{snippets}health/component/response-fields.adoc[]
== Retrieving the Health of a component instance
== Retrieving the Health of a component instance
If a particular component consists of multiple instances (as the `broker` indicator in
If a particular component consists of multiple instances (as the `broker` indicator in
the example above), the health of a particular instance of that component can be retrieved
the example above), the health of a particular instance of that component can be retrieved
by issuing a `GET` request to `/actuator/health/
{component}/
{instance}`, as shown in the
by issuing a `GET` request to `/actuator/health/
\{component}/\
{instance}`, as shown in the
following curl-based example:
following curl-based example:
include::{snippets}health/instance/curl-request.adoc[]
include::{snippets}health/instance/curl-request.adoc[]
...
...
spring-boot-project/spring-boot-actuator-autoconfigure/src/main/asciidoc/endpoints/sessions.adoc
View file @
fcbcc9d3
...
@@ -48,7 +48,7 @@ include::{snippets}sessions/username/response-fields.adoc[]
...
@@ -48,7 +48,7 @@ include::{snippets}sessions/username/response-fields.adoc[]
[[sessions-retrieving-id]]
[[sessions-retrieving-id]]
== Retrieving a Single Session
== Retrieving a Single Session
To retrieve a single session, make a `GET` request to `/actuator/sessions/{id}`, as
To retrieve a single session, make a `GET` request to `/actuator/sessions/
\
{id}`, as
shown in the following curl-based example:
shown in the following curl-based example:
include::{snippets}sessions/id/curl-request.adoc[]
include::{snippets}sessions/id/curl-request.adoc[]
...
@@ -75,7 +75,7 @@ include::{snippets}sessions/id/response-fields.adoc[]
...
@@ -75,7 +75,7 @@ include::{snippets}sessions/id/response-fields.adoc[]
[[sessions-deleting]]
[[sessions-deleting]]
== Deleting a Session
== Deleting a Session
To delete a session, make a `DELETE` request to `/actuator/sessions/{id}`, as shown in
To delete a session, make a `DELETE` request to `/actuator/sessions/
\
{id}`, as shown in
the following curl-based example:
the following curl-based example:
include::{snippets}sessions/delete/curl-request.adoc[]
include::{snippets}sessions/delete/curl-request.adoc[]
...
...
spring-boot-project/spring-boot-actuator-autoconfigure/src/main/asciidoc/index.adoc
View file @
fcbcc9d3
...
@@ -27,7 +27,7 @@ Before you proceed, you should read the following topics:
...
@@ -27,7 +27,7 @@ Before you proceed, you should read the following topics:
=== URLs
=== URLs
By default, all web endpoints are available beneath the path `/actuator` with URLs of
By default, all web endpoints are available beneath the path `/actuator` with URLs of
the form `/actuator/{id}`. The `/actuator` base path can be configured by using the
the form `/actuator/
\
{id}`. The `/actuator` base path can be configured by using the
`management.endpoints.web.base-path` property, as shown in the following example:
`management.endpoints.web.base-path` property, as shown in the following example:
[source,properties,indent=0]
[source,properties,indent=0]
...
@@ -36,7 +36,7 @@ the form `/actuator/{id}`. The `/actuator` base path can be configured by using
...
@@ -36,7 +36,7 @@ the form `/actuator/{id}`. The `/actuator` base path can be configured by using
----
----
The preceding `application.properties` example changes the form of the endpoint URLs from
The preceding `application.properties` example changes the form of the endpoint URLs from
`/actuator/
{id}` to `/manage/
{id}`. For example, the URL `info` endpoint would become
`/actuator/
\{id}` to `/manage/\
{id}`. For example, the URL `info` endpoint would become
`/manage/info`.
`/manage/info`.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment