Audit Logs
LoginRadius records every meaningful action in your tenant — sign-ins, configuration changes, API calls, and access events — into searchable, exportable audit-log streams. Use them for forensics, compliance reports, and to feed your SIEM.
Access: Admin Console → Users → User Audit Logs for end-user activity, or Tenant Settings → Team Audit Logs for admin activity. If the feature is not enabled on your tenant, contact support@loginradius.com.
Audit log streams
LoginRadius produces two audit log streams, one for end-user activity and one for administrative activity. Both streams use the same column shape, so any filter, query, or export pattern works identically across them.
| Time | UID | Actor Type | Event | Target | Status |
|---|---|---|---|---|---|
| 2026-05-19 10:20:35 | Anonymous | api_key | login | account | 200 |
| 2026-05-19 10:20:24 | Anonymous | domain | read | auth_template | 200 |
| 2026-05-19 10:16:42 | a4f9c1…7b2d09 | api_key | login | account | 401 |
| 2026-05-19 10:16:33 | c08e22…91f3aa | api_key | register | account | 201 |
| 2026-05-19 10:14:08 | a4f9c1…7b2d09 | api_key | mfa_verify | mfa | 200 |
| Time | UID | Actor Type | Event | Target | Status |
|---|---|---|---|---|---|
| 2026-05-19 10:16:15 | 2b817d…60f4f6 | dashboard | modify | optional_captcha.config | 200 |
| 2026-05-19 10:15:58 | 2b817d…60f4f6 | dashboard | modify | forms.registration | 200 |
| 2026-05-19 09:54:11 | 2b817d…60f4f6 | dashboard | login | console | 200 |
| 2026-05-19 09:21:02 | 9c1f4a…d7e218 | dashboard | create | webhook | 201 |
| 2026-05-18 17:02:18 | 9c1f4a…d7e218 | dashboard | delete | webhook | 204 |
Column reference
Actor Type
Event
Target
Status Code
Filtering & searching
Filters
Search by UID
Date Range
contains, equal, not equals) and a value. Click the + to add another rule — rules are combined with AND.Examples
Find every failed sign-in for one user
- Open the User Audit Logs view.
- Click Search by UID and paste the actor's UID — e.g.
a4f9c1…7b2d09. - Add filter:
Event · equal · login. - Add filter:
Status Code · equal · 401. - Apply. The table now lists only failed sign-ins for that user.
See what an admin changed yesterday
- Open the Team Audit Logs view.
- Set the Date range to yesterday's window.
- Add filter:
Actor Type · equal · dashboard. - Add filter:
Event · equal · modify. - Apply. The table now shows every Admin Console change made yesterday.
Exporting logs
Click the Export button at the top right of the table to download the filtered result as a CSV — up to 10,000 rows per export. The file reflects the active filters and date range, so what you see is what you get.
Need more than 10,000 rows? Use the SIEM integration for full-fidelity streaming — no row cap, plus long-term retention.
SIEM integration
Forward both streams to your SIEM for long-term retention, correlation, and alerting.
Access: Admin Console → Integration → Audit Log Integration. Pick one provider to centralize all your audit logs. If the feature is not enabled on your tenant, contact support@loginradius.com.
Supported providers
Sample SIEM log
{
"timestamp": "2026-05-20T11:02:29Z",
"request_id": "4aa1ac8e-8438-4b6d-a2ab-11de147268bb",
"app_name": "test-app",
"actor_type": "dashboard",
"uid": "7e2d54a1-9b3c-4f08-b6e7-2c14ab8d31f9",
"event": "create",
"target": "account",
"metadata": {},
"request": {
"method": "POST",
"path": "/api/register",
"content_type": "application/json",
"body": {
"firstname": "Alex",
"emailid": "alex@test-app.com",
"password": "***",
"phoneid": "+14155551234"
}
},
"response": {
"status_code": 201,
"content_type": "application/json"
},
"user_agent": "axios/1.16.1"
}