此版本仍在开发中,尚未被视为稳定版本。对于最新的稳定版本,请使用 Spring Boot 3.4.0! |
审核事件 (auditevents
)
终端节点提供有关应用程序的审核事件的信息。auditevents
检索审计事件
要检索审计事件,请向 发出请求,如以下基于 curl 的示例所示:GET
/actuator/auditevents
$ curl 'http://localhost:8080/actuator/auditevents?principal=alice&after=2024-11-27T20%3A20%3A37.56526381Z&type=logout' -i -X GET
前面的示例检索委托人 的事件,这些事件发生在 UTC 时区的 2017 年 11 月 7 日 09:37 之后。
生成的响应类似于以下内容:logout
alice
HTTP/1.1 200 OK
Content-Type: application/vnd.spring-boot.actuator.v3+json
Content-Length: 127
{
"events" : [ {
"timestamp" : "2024-11-27T20:20:37.575882458Z",
"principal" : "alice",
"type" : "logout"
} ]
}