A cloud-native SIEM solution that provides intelligent security analytics and threat detection across systems
The key detail here is the connector type.
The current UEBA reference lists Okta UEBA support for Okta Single Sign-On (using Azure Functions) and the Okta_CL / OktaV2_CL tables. It does not explicitly list the Codeless Connector Framework (CCF) connector as the supported Okta UEBA source.
This can explain why the Defender portal reports “Data source is not ingested to Sentinel” even though OktaV2_CL contains data. The UEBA configuration appears to validate the supported connector/data-source registration, not only whether a table with that name exists.
Also verify that the records contain a valid:
actor_id_s
because Microsoft specifically requires this field for Okta UEBA processing.
You can quickly validate it with:
OktaV2_CL
| where TimeGenerated > ago(24h)
| summarize Total=count(), WithActorId=countif(isnotempty(actor_id_s))
So I would first verify the connector implementation. If you are definitely using the CCF connector and Microsoft intends that connector to support UEBA, then there appears to be a discrepancy between the current connector implementation and the UEBA documentation, and I would recommend raising a Microsoft support case.
If this helps resolve your issue, please don’t forget to mark the answer as Accepted / Resolved, as it may help others experiencing the same behavior.