Skip to content

Commit 461d561

Browse files
committed
Merge pull request #8319 from vpavic:fix-docs
* pr/8319: Fix audit events related documentation
2 parents 9e1238e + 1c8f1c7 commit 461d561

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

spring-boot-actuator/README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ For Gradle, use the declaration:
4343
delta (an increment or decrement). Metrics for all HTTP requests are automatically
4444
recorded, so if you hit the `metrics` endpoint should see a sensible response.
4545
* **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
4747
authentication events by default. This can be very useful for reporting, and also to
4848
implement a lock-out policy based on authentication failures.
4949
* **Process Monitoring** In Spring Boot Actuator you can find `ApplicationPidFileWriter`

spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2710,7 +2710,8 @@ to the home page at "/" and keep the default for everything else:
27102710
If the Actuator is also in use, you will find:
27112711

27122712
* 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`.
27142715
* The default user will have the `ADMIN` role as well as the `USER` role.
27152716

27162717
The Actuator security features can be modified using external properties

0 commit comments

Comments
 (0)