审核事件 (auditevents
)
终端节点提供有关应用程序的审核事件的信息。auditevents
检索审计事件
要检索审计事件,请向 发出请求,如以下基于 curl 的示例所示:GET
/actuator/auditevents
$ curl 'http://localhost:8080/actuator/auditevents?principal=alice&after=2024-11-21T16%3A02%3A32.656170834Z&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-21T16:02:32.663901672Z",
"principal" : "alice",
"type" : "logout"
} ]
}