Skip to main content
Audit Logs is a beta feature. This feature is functional and supported, but is still undergoing regular changes. Audit logging requires enablement for your organization — contact your Strata account team or Strata support to enable it.
Console audit logs give you a complete record of every administrative action taken in your Maverics Console. Whether you need to investigate a misconfigured deployment, demonstrate compliance to an auditor, or simply answer “who changed that?” — audit logs provide the evidence.

What Are Console Audit Logs?

Every action that administrators perform in the Console is recorded as a log entry — who performed the action, what resource was affected, when it happened, and whether it succeeded or failed. Publishing a config bundle, inviting a team member, updating a deployment, uploading a TLS certificate — each of these actions produces a structured audit record. Audit logs matter for three reasons:
  • Compliance evidence — Audit logs provide the admin-action audit trail required by frameworks like SOC 2, HIPAA, and GDPR. They prove who made configuration changes, when, and whether those changes were authorized.
  • Security investigations — When something goes wrong — a misconfigured policy, an unauthorized deployment publish — audit logs let you trace the exact sequence of actions that led to the issue, including the actor, IP address, and timestamp.
  • Operational accountability — In multi-admin environments, audit logs establish clear ownership of every change. You can answer “who published that config?” or “who removed that team member?” without guessing.

Console Logs vs. Orchestrator Logs

Console audit logs capture management plane actions: configuration changes, bundle publishing, team membership, organization settings — everything administrators do in the Console UI. The Orchestrator, by contrast, captures data plane actions: user authentication events, authorization decisions, token issuance, and proxy requests — everything that happens at runtime when end users interact with protected applications. Together, Console audit logs and Orchestrator logs provide complete audit coverage across both administrative and runtime operations. For Orchestrator-side logging, see the Compliance and Audit guide and the Telemetry Reference.

Accessing Audit Logs

Audit logs are accessible through the Console UI. You can filter by time range, event category, and specific event type to find relevant entries. JSON/CSV export and SIEM streaming are on the roadmap — see Export and Integration below.

Schema (v1.0)

Every audit log entry follows the v1.0 schema. The top-level structure contains identifying information, the event classification, and nested objects describing the actor, target, source, context, and request.

Top-Level Fields

FieldTypeDescription
idstringUnique identifier for this audit log entry
versionstringSchema version (currently "1.0")
timestampstring (RFC 3339)When the event occurred
eventTypestringSpecific event identifier (e.g., deployment.publish)
categorystringEvent category (e.g., deployment_management)
outcomeobjectResult of the action — see Outcome
actorobjectWho performed the action — see Actor
targetobjectWhat was acted upon — see Target
sourceobjectWhere the request came from — see Source
contextobjectTracing and service information — see Context
requestobjectHTTP request details — see Request
metadataobjectAdditional event-specific data (varies by event type)

Outcome

The outcome object records whether the action succeeded or failed.
FieldTypeDescription
statusstring"success" or "failure"
statusCodeintegerHTTP status code of the response
errorMsgstringError message (present on failure)
reasonstringHuman-readable reason for the outcome
Status determination: HTTP status codes 200—299 are recorded as "success". All other status codes are recorded as "failure".

Actor

The actor object identifies who performed the action.
FieldTypeDescription
typestringActor type (e.g., "user")
idstringUnique identifier for the actor
emailstringActor’s email address
displayNamestringActor’s display name
organizationIDstringID of the actor’s organization
organizationNamestringName of the actor’s organization

Target

The target object identifies what was acted upon.
FieldTypeDescription
idstringUnique identifier for the target resource
arnstringAmazon Resource Name or resource identifier
typestringTarget resource type (e.g., "deployment", "application")
namestringHuman-readable name of the target resource
organizationIDstringID of the organization that owns the target

Source

The source object records where the request originated.
FieldTypeDescription
ipAddressstringIP address of the client
clientTypestringType of client that made the request
userAgentstringUser-Agent header from the HTTP request

Context

The context object provides tracing and service metadata for correlating events across services.
FieldTypeDescription
regionstringRegion where the request was processed
servicestringService that handled the request
serviceVersionstringVersion of the service
traceIDstringDistributed trace identifier
spanIDstringSpan identifier within the trace

Request

The request object captures HTTP-level details about the API call.
FieldTypeDescription
methodstringHTTP method (e.g., GET, POST, PUT, DELETE)
pathstringRequest URL path
queryParamsstringQuery string parameters
referrerstringHTTP Referer header value
contentLengthintegerSize of the request body in bytes
contentTypestringContent-Type header value
The API uses camelCase JSON serialization for all fields (e.g., eventType, statusCode, displayName, ipAddress, clientType, userAgent, traceID, spanID, queryParams, contentLength, contentType).

Event Categories and Types

The Console captures over 80 distinct event types organized into 9 categories. Each event type represents a specific API action.
All operations related to creating, configuring, publishing, and managing Orchestrator deployments.
Event TypeDescription
deployment.listList all deployments
deployment.createCreate a new deployment
deployment.updateUpdate deployment settings
deployment.viewView deployment details
deployment.deleteDelete a deployment
deployment.purgePermanently remove a deleted deployment
deployment.publishPublish a config bundle to the deployment provider
deployment.restoreRestore a previously deleted deployment
deployment.downloadDownload the deployment’s config bundle
deployment.config.viewView deployment configuration
deployment.config.updateUpdate deployment configuration
deployment.config.downloadDownload deployment configuration
deployment.settings.updateUpdate deployment-level settings
deployment.storage.updateUpdate the deployment’s storage provider
deployment.key.downloadDownload the deployment’s public key
deployment.service.createCreate a service extension
deployment.service.viewView a service extension
deployment.service.updateUpdate a service extension
deployment.service.deleteDelete a service extension
deployment.service.jwks.createCreate a JWKS entry for a service
deployment.service.jwks.listList JWKS entries for a service
deployment.service.jwks.deleteDelete a JWKS entry for a service
deployment.application.attachAttach an application to a deployment
deployment.application.detachDetach an application from a deployment
deployment.cache.createCreate a cache configuration
deployment.cache.listList cache configurations
deployment.cache.deleteDelete a cache configuration
deployment.cache.updateUpdate a cache configuration
deployment.cache.viewView a cache configuration
deployment.tls.createCreate a TLS certificate
deployment.tls.listList TLS certificates
deployment.tls.updateUpdate a TLS certificate
deployment.orchestrator.viewView Orchestrator instance details
deployment.revision.listList deployment revisions
deployment.revision.viewView a specific deployment revision
Operations for managing organization settings and configuration.
Event TypeDescription
organization.listList organizations
organization.viewView organization details
organization.updateUpdate organization settings
organization.deleteDelete an organization
Operations for invitations, roles, team membership, and organizational units.
Event TypeDescription
member.listList organization members
member.inviteInvite a new member to the organization
member.removeRemove a member from the organization
member.joinA member accepts an invitation
member.declineA member declines an invitation
member.invitation.listList pending invitations
member.invitation.cancelCancel a pending invitation
member.role.updateUpdate a member’s role
ownership.transferTransfer organization ownership
organization_unit.createCreate an organizational unit
organization_unit.updateUpdate an organizational unit
organization_unit.listList organizational units
organization_unit.viewView an organizational unit
CRUD operations for applications managed through the Console.
Event TypeDescription
application.listList applications
application.viewView application details
application.createCreate a new application
application.updateUpdate an application
application.deleteDelete an application
Operations for managing identity fabrics and service extensions.
Event TypeDescription
identity_fabric.listList identity fabrics
identity_fabric.createCreate an identity fabric
identity_fabric.viewView identity fabric details
identity_fabric.updateUpdate an identity fabric
identity_fabric.deleteDelete an identity fabric
service_extension.listList service extensions
service_extension.compileCompile a service extension
Operations for managing user flows and their policies.
Event TypeDescription
user_flow.listList user flows
user_flow.createCreate a user flow
user_flow.deleteDelete a user flow
user_flow.viewView user flow details
user_flow.updateUpdate a user flow
user_flow.policy.createCreate a policy on a user flow
user_flow.policy.viewView a user flow policy
user_flow.policy.updateUpdate a user flow policy
user_flow.policy.deleteDelete a user flow policy
TLS certificate management operations.
Event TypeDescription
tls.listList TLS certificates
tls.viewView TLS certificate details
tls.createUpload or create a TLS certificate
tls.updateUpdate a TLS certificate
tls.deleteDelete a TLS certificate
Operations for viewing audit logs themselves.
Event TypeDescription
audit_log.listList audit log entries
audit_log.viewView a single audit log entry
User account operations.
Event TypeDescription
user.deleteDelete a user account

Storage and Retention

Audit log storage is automatic when audit logging is enabled for your organization. There is no additional configuration required. Logs are currently retained indefinitely and are accessible through the Console UI. A formal retention policy, including default retention periods, will be defined in a future release as export and SIEM streaming capabilities become available.

Export and Integration

The following export capabilities are on the Strata product roadmap and are not yet available. Contact your Strata account team for the latest availability.
Planned export and integration capabilities for audit logs include:
  • JSON export — Download audit log data as JSON files for offline analysis and archival
  • CSV export — Export audit logs in CSV format for spreadsheet analysis and reporting
  • SIEM streaming — Stream audit log events to your cloud-based SIEM solution for centralized security monitoring and alerting