Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.oleria.com/llms.txt

Use this file to discover all available pages before exploring further.

Track every change made in your Oleria workspace. The audit log records user actions, integration changes, remediations, and other key events so you can investigate incidents, support compliance audits, and maintain a reliable record of workspace activity.

Request the audit log

Request a copy of your audit log in JSON format by contacting support@oleria.com.

Events

The table below lists every action Oleria records in the audit log. Each row maps a human-readable event description to the action value that appears in the audit log JSON - useful when filtering or parsing an exported log.
CategoryAudited eventAction nameAction source
AuthenticationUser logs into workspaceLOG_INAUTHENTICATION
AuthenticationUser logs out of workspaceLOG_OUTAUTHENTICATION
User ManagementAdd a new userADD_USERUSER_MANAGEMENT
User ManagementUpdate an existing userUPDATE_USERUSER_MANAGEMENT
User ManagementResend an invite to a userRESEND_INVITEUSER_MANAGEMENT
User ManagementDelete an invite to a userDELETE_INVITEUSER_MANAGEMENT
User ManagementDelete an existing userDELETE_USERUSER_MANAGEMENT
IntegrationAdd a new integrationADD_INTEGRATIONINTEGRATION_MANAGEMENT
IntegrationDelete an existing integrationDELETE_INTEGRATIONINTEGRATION_MANAGEMENT
ExportExport a table as CSV fileEXPORT_CSVDOWNLOAD_MANAGEMENT
TicketingAdd a ticketing system integrationADD_TICKETING_SYSTEMTICKETING
TicketingDelete a ticketing system integrationDELETE_TICKETING_SYSTEMTICKETING
RemediationDisable account, Revoke accessCREATE_WORKFLOW_EXECUTIONWORKFLOW_AUTOMATION_FRAMEWORK
Action CenterUndo actionREVERT_WORKFLOW_EXECUTIONWORKFLOW_AUTOMATION_FRAMEWORK
ColumnDescription
CategoryThe area of the product where the action took place.
Audited eventA plain-language description of what happened.
Action nameThe value of the action field in the audit log JSON. Use this when filtering exported logs.
Action sourceThe internal source component that generated the event. Corresponds to the source field in the event payload.

Event attributes

Every event in the audit log is a JSON object. The table below defines each field. The action and source fields together identify what happened and where. The actor fields identify who did it. The old and new fields capture what changed - they only appear on update-type events where a record was modified.
AttributeTypeDescription
actionstringThe action that was performed. For a full list of logged activities, see the events table above.
actor.idstringUnique ID of the user who performed the action.
actor.emailstringEmail of the user who performed the action.
messagestringDescribes the event in plain language.
newobjectOptional. Key-value pairs showing the value of the record after it was changed. Present on update events only.
oldobjectOptional. Key-value pairs showing the value of the record before it was changed. Present on update events only.
sourcestringThe resource type or component that generated the event. Corresponds to the Action source column in the events table.
statusstringThe result of the activity. Possible values: SUCCESS, FAILURE, UNKNOWN_STATUS.
resourceTypestringThe type of resource affected by the activity.
targetstringThe specific resource affected by the activity.
tenant_idstringThe workspace ID.
timestampstring (date-time)Date and time the activity occurred (UTC). For example, 2024-01-15T09:32:00Z.
eventIdstringUnique ID (GUID) for the event. Useful for deduplication when processing log exports.

Example event

{
  "eventId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "action": "UPDATE_USER",
  "source": "USER_MANAGEMENT",
  "status": "SUCCESS",
  "timestamp": "2024-01-15T09:32:00Z",
  "actor": {
    "id": "usr_abc123",
    "email": "admin@example.com"
  },
  "target": "usr_xyz789",
  "resourceType": "USER",
  "message": "User role updated",
  "old": { "role": "Analyst" },
  "new": { "role": "Operator" },
  "tenant_id": "tenant_00001"
}

Contact us

For questions, contact us at support@oleria.com.