plerion audit-logs
View audit logs for tenant operations.
With plerion audit-logs, you can view audit log entries for tenant operations including logins, API key creation, and other administrative actions.
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
View audit logs for tenant operations.
plerion audit-logs list [options]
plerion audit-logs list [options]
| Flag | Type | Description |
|---|---|---|
--start | ISO 8601 | Start time (e.g. 2024-01-01T00:00:00Z) |
--end | ISO 8601 | End time (e.g. 2024-01-31T23:59:59Z) |
--user-id | string | Filter by operator user ID |
--operation | string | Filter by operation type (e.g. UserLogin, CreatedApiKey) |
--per-page | number | Results per page (default: 50, max: 1000) |
--all | flag | Fetch all pages automatically |
# Logs for January 2024
plerion audit-logs list --start 2024-01-01T00:00:00Z --end 2024-01-31T23:59:59Z
# All login events
plerion audit-logs list --operation UserLogin
# Logs by a specific user
plerion audit-logs list --user-id user-abc123 --output json
# Fetch all audit logs across all pages
plerion audit-logs list --all --output json
| Column | Description |
|---|---|
| ID | Audit log entry ID |
| OPERATION | Operation type (e.g. UserLogin, CreatedApiKey) |
| TIME | Operation timestamp |
| USER ID | Operator user ID |
| Operator email address | |
| IP | IP address |
| USER AGENT | Browser/client user agent |
| COUNTRY | Country (from IP geolocation) |
| CITY | City (from IP geolocation) |
| REGION | Region (from IP geolocation) |
| TENANT ID | Tenant ID |
| ORG ID | Organization ID |
Was this page helpful?