/*
 * Copyright 2012-2020 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.boot.actuate.startup;

import org.springframework.boot.SpringBootVersion;
import org.springframework.boot.actuate.endpoint.annotation.Endpoint;
import org.springframework.boot.actuate.endpoint.annotation.WriteOperation;
import org.springframework.boot.context.metrics.buffering.BufferingApplicationStartup;
import org.springframework.boot.context.metrics.buffering.StartupTimeline;

@Endpoint to expose the timeline of the application startup.
Author:Brian Clozel
Since:2.4.0
/** * {@link Endpoint @Endpoint} to expose the timeline of the * {@link org.springframework.boot.context.metrics.buffering.BufferingApplicationStartup * application startup}. * * @author Brian Clozel * @since 2.4.0 */
@Endpoint(id = "startup") public class StartupEndpoint { private final BufferingApplicationStartup applicationStartup;
Creates a new StartupEndpoint that will describe the timeline of buffered application startup events.
Params:
  • applicationStartup – the application startup
/** * Creates a new {@code StartupEndpoint} that will describe the timeline of buffered * application startup events. * @param applicationStartup the application startup */
public StartupEndpoint(BufferingApplicationStartup applicationStartup) { this.applicationStartup = applicationStartup; } @WriteOperation public StartupResponse startup() { StartupTimeline startupTimeline = this.applicationStartup.drainBufferedTimeline(); return new StartupResponse(startupTimeline); }
A description of an application startup, primarily intended for serialization to JSON.
/** * A description of an application startup, primarily intended for serialization to * JSON. */
public static final class StartupResponse { private final String springBootVersion; private final StartupTimeline timeline; private StartupResponse(StartupTimeline timeline) { this.timeline = timeline; this.springBootVersion = SpringBootVersion.getVersion(); } public String getSpringBootVersion() { return this.springBootVersion; } public StartupTimeline getTimeline() { return this.timeline; } } }