From c50a0d855fcf1cf054928b5104a0bebd5d633184 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Mon, 30 Oct 2017 15:32:49 +0000 Subject: [PATCH] Reflect process monitoring classes' move to spring-boot in docs Closes gh-9998 --- .../src/main/asciidoc/production-ready-features.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc index 95b4725cff..096815d45d 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc @@ -1112,8 +1112,8 @@ if needed. [[production-ready-process-monitoring]] == Process monitoring -In Spring Boot Actuator you can find a couple of classes to create files that are useful -for process monitoring: +In the `spring-boot` module you can find a couple of classes to create files that are +useful for process monitoring: * `ApplicationPidFileWriter` creates a file containing the application PID (by default in the application directory with the file name `application.pid`). @@ -1135,7 +1135,7 @@ writes a PID file. Example: ---- org.springframework.context.ApplicationListener=\ org.springframework.boot.system.ApplicationPidFileWriter,\ - org.springframework.boot.actuate.system.EmbeddedServerPortFileWriter + org.springframework.boot.system.EmbeddedServerPortFileWriter ----