This version is still in development and is not considered stable yet. For the latest stable version, please use Spring Boot 3.3.5! |
Application Startup (startup
)
The startup
endpoint provides information about the application’s startup sequence.
Retrieving the Application Startup Steps
The application startup steps can either be retrieved as a snapshot (GET
) or drained from the buffer (POST
).
Retrieving a snapshot of the Application Startup Steps
To retrieve the steps recorded so far during the application startup phase, make a GET
request to /actuator/startup
, as shown in the following curl-based example:
$ curl 'http://localhost:8080/actuator/startup' -i -X GET
The resulting response is similar to the following:
HTTP/1.1 200 OK
Content-Type: application/vnd.spring-boot.actuator.v3+json
Content-Length: 893
{
"springBootVersion" : "3.4.0-RC1",
"timeline" : {
"startTime" : "2024-10-26T03:50:28.181731783Z",
"events" : [ {
"endTime" : "2024-10-26T03:50:28.458422465Z",
"duration" : "PT0.000005842S",
"startTime" : "2024-10-26T03:50:28.458416623Z",
"startupStep" : {
"name" : "spring.beans.instantiate",
"id" : 3,
"tags" : [ {
"key" : "beanName",
"value" : "homeController"
} ],
"parentId" : 2
}
}, {
"endTime" : "2024-10-26T03:50:28.458433686Z",
"duration" : "PT0.000025168S",
"startTime" : "2024-10-26T03:50:28.458408518Z",
"startupStep" : {
"name" : "spring.boot.application.starting",
"id" : 2,
"tags" : [ {
"key" : "mainApplicationClass",
"value" : "com.example.startup.StartupApplication"
} ]
}
} ]
}
}
Draining the Application Startup Steps
To drain and return the steps recorded so far during the application startup phase, make a POST
request to /actuator/startup
, as shown in the following curl-based example:
$ curl 'http://localhost:8080/actuator/startup' -i -X POST
The resulting response is similar to the following:
HTTP/1.1 200 OK
Content-Type: application/vnd.spring-boot.actuator.v3+json
Content-Length: 893
{
"springBootVersion" : "3.4.0-RC1",
"timeline" : {
"startTime" : "2024-10-26T03:50:28.181731783Z",
"events" : [ {
"endTime" : "2024-10-26T03:50:28.409250084Z",
"duration" : "PT0.000380671S",
"startTime" : "2024-10-26T03:50:28.408869413Z",
"startupStep" : {
"name" : "spring.beans.instantiate",
"id" : 1,
"tags" : [ {
"key" : "beanName",
"value" : "homeController"
} ],
"parentId" : 0
}
}, {
"endTime" : "2024-10-26T03:50:28.409294748Z",
"duration" : "PT0.011810759S",
"startTime" : "2024-10-26T03:50:28.397483989Z",
"startupStep" : {
"name" : "spring.boot.application.starting",
"id" : 0,
"tags" : [ {
"key" : "mainApplicationClass",
"value" : "com.example.startup.StartupApplication"
} ]
}
} ]
}
}
Response Structure
The response contains details of the application startup steps. The following table describes the structure of the response:
Path | Type | Description |
---|---|---|
|
|
Spring Boot version for this application. |
|
|
Start time of the application. |
|
|
An array of steps collected during application startup so far. |
|
|
The timestamp of the start of this event. |
|
|
The timestamp of the end of this event. |
|
|
The precise duration of this event. |
|
|
The name of the StartupStep. |
|
|
The id of this StartupStep. |
|
|
The parent id for this StartupStep. |
|
|
An array of key/value pairs with additional step info. |
|
|
The key of the StartupStep Tag. |
|
|
The value of the StartupStep Tag. |