Audit Logging
Track user actions and system events for compliance and security auditing.
Overviewโ
Ever Gauzy maintains comprehensive audit logs through two mechanisms:
- Activity Logs โ entity-level change tracking
- API Call Logs โ HTTP request/response logging
Activity Logsโ
Every entity change is recorded with:
| Field | Description |
|---|---|
| Entity | Changed entity type |
| Entity ID | Changed entity identifier |
| Action | CREATED, UPDATED, DELETED |
| Actor Type | User or System |
| Updated Fields | List of changed field names |
| Updated Values | New field values |
| Previous Values | Old field values |
| Creator | User who made the change |
| Timestamp | When the change occurred |
API Call Logsโ
HTTP request/response recording:
| Field | Description |
|---|---|
| URL | Request URL |
| Method | HTTP method |
| Status Code | Response status |
| Request Headers | Request headers |
| Request Body | Request payload |
| Response Body | Response payload |
| IP Address | Client IP address |