イベントの監査 (auditevents
)
auditevents
エンドポイントは、アプリケーションの監査イベントに関する情報を提供します。
監査イベントの取得
監査イベントを取得するには、次の curl ベースの例に示すように、GET
リクエストを /actuator/auditevents
に作成します。
$ curl 'http://localhost:8080/actuator/auditevents?principal=alice&after=2025-01-23T11%3A06%3A31.16794521Z&type=logout' -i -X GET
前述の例では、UTC タイムゾーンで 2017 年 11 月 7 日に 09:37 の後に発生したプリンシパル alice
の logout
イベントを取得します。結果のレスポンスは次のようになります。
HTTP/1.1 200 OK
Content-Type: application/vnd.spring-boot.actuator.v3+json
Content-Length: 127
{
"events" : [ {
"timestamp" : "2025-01-23T11:06:31.173361973Z",
"principal" : "alice",
"type" : "logout"
} ]
}