File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
spring-boot-docs/src/main/asciidoc Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ For Gradle, use the declaration:
43
43
delta (an increment or decrement). Metrics for all HTTP requests are automatically
44
44
recorded, so if you hit the `metrics` endpoint should see a sensible response.
45
45
* **Audit** Spring Boot Actuator has a flexible audit framework that will publish events
46
- to an `AuditService `. Once Spring Security is in play it automatically publishes
46
+ to an `AuditEventRepository `. Once Spring Security is in play it automatically publishes
47
47
authentication events by default. This can be very useful for reporting, and also to
48
48
implement a lock-out policy based on authentication failures.
49
49
* **Process Monitoring** In Spring Boot Actuator you can find `ApplicationPidFileWriter`
Original file line number Diff line number Diff line change @@ -2710,7 +2710,8 @@ to the home page at "/" and keep the default for everything else:
2710
2710
If the Actuator is also in use, you will find:
2711
2711
2712
2712
* The management endpoints are secure even if the application endpoints are insecure.
2713
- * Security events are transformed into `AuditEvents` and published to the `AuditService`.
2713
+ * Security events are transformed into `AuditEvent` instances and published to the
2714
+ `AuditEventRepository`.
2714
2715
* The default user will have the `ADMIN` role as well as the `USER` role.
2715
2716
2716
2717
The Actuator security features can be modified using external properties
You can’t perform that action at this time.
0 commit comments