Okta System Log telemetry sources

Okta records identity and administrative activity in the System Log, which identifies each observable action by an eventType dotted string (e.g. user.session.start, policy.rule.update) rather than a numbered event log. The catalog groups eventTypes by their top-level namespace prefix (the first dotted segment, e.g. user, policy, system) into one synthetic Okta-<prefix> provider each, with every eventType as an event. These pages are kept separate from the Windows event catalog.

Namespace prefixes

NamespaceDescriptionEvent types
Okta-accessIdentity Governance access requests, conditions, and approvals22
Okta-accountOrg account lifecycle and provisioning-template changes15
Okta-analyticsReporting exports and product feedback4
Okta-appApplication sign-on, assignment, and access-request activity225
Okta-applicationApplication object configuration and integration administration84
Okta-certificationIdentity Governance access-certification campaigns9
Okta-coreCore platform internals (expression language, concurrency limits)3
Okta-credentialCredential enrollment and revocation2
Okta-deviceDevice registration, assurance policy, and desktop MFA40
Okta-directoryDirectory integration and AD/LDAP profile sync10
Okta-event-hookEvent hook lifecycle and delivery7
Okta-groupGroup lifecycle and application/membership assignment17
Okta-iamCustom admin roles and resource-set bindings18
Okta-inline-hookInline hook lifecycle and execution8
Okta-integrationAPI-service integration authorization2
Okta-master-applicationMaster (HR-source) application user membership1
Okta-mimMobile device management (MDM) commands17
Okta-network-zoneNetwork zone rule changes1
Okta-oauth2OAuth2 authorization servers, claims, and scopes11
Okta-orgOrg-level configuration signals1
Okta-pamPrivileged Access Management: AD connections, secrets, sessions139
Okta-personalPersonal (end-user) app settings and migration2
Okta-pkiPKI certificate authorities and certificate binding14
Okta-pluginBrowser plugin download and status2
Okta-policyAuthentication and access policy evaluation and enforcement24
Okta-resource-serversCustom API authorization servers19
Okta-scheduled-actionScheduled user actions (deferred suspension)4
Okta-securityThreat protection, attack detection, and authenticator security39
Okta-self-serviceSelf-service feature enablement2
Okta-supportOkta Support org access and changes2
Okta-systemOrg agents, connectors, and platform administration232
Okta-taskBackground task lifecycle5
Okta-userUser account lifecycle, sessions, MFA, and authentication80
Okta-workflowsOkta Workflows automation runs and connections48
Okta-workload-principalWorkload and AI-agent service principals and credentials16
Okta-zoneNetwork zone lifecycle and allow/block lists7

The 36 prefixes and 1,132 eventTypes are enumerated from the Okta Event Types CSV. See the cross-vendor Okta coverage matrix for which rules cover which eventTypes.

The System Log event model

Each System Log LogEvent carries a common envelope: eventType (the action), actor (who performed it: User, Client, or System), target[] (the objects acted on), outcome.result (SUCCESS, FAILURE, DENY, ...), client (IP, user agent, geo), and authenticationContext / transaction (session and transaction IDs for correlation). A detection keys on the eventType to identify the action, then on the envelope and outcome to score it.

Source: Okta: System Log API reference.

The namespace prefix is derived, not native

Okta does not expose the namespace prefix as a distinct field: the LogEvent schema, the filter API, and the ingestion connectors all carry the full eventType string only. The prefix split is derived by the catalog (the first dotted segment), purely for navigability. Every detection rule in every corpus matches on the full eventType string; no rule filters on a prefix alone.

Source: Okta: Event Types catalog.

Identity Engine vs Classic Engine

Some eventTypes are only generated by Okta Identity Engine (OIE) orgs and never by Classic Engine orgs (tagged oie-only in the Event Types CSV). Their event pages note this so a Classic Engine deployment does not expect telemetry it will never emit. A single user action can also produce several LogEvents with different eventTypes correlated by authenticationContext.externalSessionId or transaction.id.

Source: Okta: Event Types catalog.