Skip to main content
Miteos Audit Logs give you a complete, tamper-proof record of everything that happens inside your organization’s Miteos environment — every agent tool call, every login, every approval decision, and every configuration change. Audit logs are designed for compliance teams, security engineers, and IT admins who need definitive answers about what happened, when, and by whom.

What Is Logged

Every significant action in Miteos generates an audit event. Events are grouped into the following categories:
CategoryEvents Logged
AuthenticationUser login, logout, SSO events, API key creation, API key deletion
TasksTask created, started, completed, failed, cancelled
Agent ActionsEvery tool call, browser navigation, file operation, and code execution performed by an agent
ApprovalsApproval requested, approved, denied (with reason provided by the approver)
IntegrationsIntegration connected, disconnected, credential refresh
BillingPlan upgrade or downgrade, usage alert triggered
TeamMember invited, member’s role changed, member removed
Audit logs are immutable — no user, admin, or Miteos support engineer can edit or delete log entries after they are written. This immutability is a prerequisite for SOC 2 Type II and GDPR compliance.

Accessing Audit Logs

1

Open the Audit Logs page

Go to platform.miteos.com/settings/audit-logs. You must be a team Owner or Admin to access this page.
2

Filter to the events you need

Use the filter bar to narrow results by date range, user, event type, or task ID. Multiple filters can be combined.
3

Inspect individual events

Click any log entry to open a detail panel showing the full event payload — including agent action parameters, request metadata, IP address, and outcome.

Searching Logs

The audit log search and filter system supports the following dimensions:

Date Range

Filter logs to any time window, from the last hour to a custom multi-month range. All timestamps are stored and displayed in UTC.

User Email

Scope the log view to a specific team member to audit their activity or investigate a security incident.

Event Type

Filter by category (for example, agent.action, auth.login, approval.denied) to focus on a specific class of events.

Task ID

Retrieve every log entry associated with a single task — useful for debugging a failed run or demonstrating the full audit trail for a completed workflow.

Agent ID

Scope the log to all actions taken by a specific agent instance across all tasks.

Outcome

Filter by success or failure to surface errors quickly without scrolling through successful operations.

Exporting Logs

You can export filtered audit log results in CSV or JSON format for use in SIEM tools, compliance reports, or external storage. To export:
  1. Apply your desired filters on the Audit Logs page.
  2. Click Export and choose either CSV or JSON.
  3. The export is generated and downloaded to your browser. Large exports (over 10,000 events) are prepared asynchronously and emailed to you as a download link.
Retention periods:
PlanRetention
Business90 days
Enterprise2 years
If you need longer retention or real-time log streaming to an external SIEM (such as Splunk, Datadog, or AWS Security Hub), contact sales@miteos.com to discuss Enterprise log forwarding options.

Log Format

Every audit event follows a consistent JSON schema. Here is an example of an agent.action event:
{
  "id": "log_abc123",
  "timestamp": "2026-06-20T14:32:01Z",
  "type": "agent.action",
  "user_id": "usr_xyz789",
  "task_id": "task_def456",
  "agent_id": "agt_ghi012",
  "event": {
    "tool": "browser.navigate",
    "url": "https://example.com/products",
    "outcome": "success"
  }
}
Field reference:
FieldTypeDescription
idstringUnique identifier for this log entry
timestampISO 8601 stringUTC time the event was recorded
typestringEvent category and action (for example, agent.action, auth.login, approval.denied)
user_idstringThe Miteos user ID of the person who triggered the event
task_idstringThe task associated with this event, if applicable
agent_idstringThe agent instance that performed the action, if applicable
eventobjectEvent-specific payload containing tool name, parameters, and outcome
Audit Logs are available on the Business and Enterprise plans. Logs are immutable — they cannot be edited or deleted by anyone, including Miteos support staff.