Merge pull request #36507 from fzyzcjy

* pr/36507:
  Fix description of started and ready time metrics

Closes gh-36507
pull/36620/head
Stephane Nicoll 1 year ago
commit abf2f8af8a

@ -103,12 +103,12 @@ public class StartupTimeMetricsListener implements SmartApplicationListener {
}
private void onApplicationStarted(ApplicationStartedEvent event) {
registerGauge(this.startedTimeMetricName, "Time taken (ms) to start the application", event.getTimeTaken(),
registerGauge(this.startedTimeMetricName, "Time taken to start the application", event.getTimeTaken(),
event.getSpringApplication());
}
private void onApplicationReady(ApplicationReadyEvent event) {
registerGauge(this.readyTimeMetricName, "Time taken (ms) for the application to be ready to service requests",
registerGauge(this.readyTimeMetricName, "Time taken for the application to be ready to service requests",
event.getTimeTaken(), event.getSpringApplication());
}

Loading…
Cancel
Save