Troubleshooting the UEBA Content App for Cloud
Solutions to common issues with the UEBA Content App for Cloud
Scheduled search is not running
Symptom: Search execution history shows no recent runs.
Resolution:
- Verify the search is enabled:
- Navigate to Settings > Searches, reports, and alerts.
- Confirm the search is enabled.
- Check the scheduler log:
CODE
index=_internal source=*scheduler.log* savedsearch_name="UEBA - Network Traffic Volume Summarization - Summary Gen" | table _time, savedsearch_name, status, message
Network Traffic Volume Summarization is running but producing no results
Symptoms: The search executes successfully but returns 0 events. Detections produce no findings.
Resolution:
- Verify that your
Network_Trafficdata model is accelerated and populated:- Navigate to Settings > Data models, then locate Network_Traffic.
- Confirm that acceleration is enabled and that the summaries are up-to-date.
- Run the mapping macro directly to check whether CIM fields are present:
CODE
| `ueba_udd_map_network_traffic("*")` | stats countIf the count is
0, theNetwork_Trafficdata model has no data. Verify that your networksourcetypevalues are correctly mapped to the CIMNetwork_Trafficdata model. Refer to Network Activity Dataset. - Confirm that traffic events include user identity information. Events without a user will not produce per-user anomaly findings:
CODE
| `ueba_udd_map_network_traffic("*")` | stats count, count(eval(isnotnull(actor__user__name))) as with_user
Detections are enabled but producing no anomaly findings
Symptom: Network traffic data is flowing but no risk events appear in Enterprise Security.
Resolution:
- Confirm that the UEBA - Network Traffic Volume Summarization - Summary Gen saved search is enabled and running successfully.
- Confirm that both relevant detections are enabled in Enterprise Security > Content Management.
- Verify that at least 7 days of network traffic data has been collected. The anomaly models require a minimum historical baseline before reporting findings.
- Check that your network traffic events include user identity fields. Run the following search and confirm that
with_useris non-zero:CODE| `ueba_udd_map_network_traffic("*")` | stats count, count(eval(isnotnull(actor__user__name))) as with_user
Macro changes not taking effect
Symptom: Changes to a normalization macro don't appear in search results.
Resolution:
- Verify that the macro is defined in the correct app context (UEBA Content) and that your role permissions allow searches to access it.
Navigate to Settings > Advanced search > Search macros.
- Test the macro directly in the search field to confirm that it returns events:
CODE
| `ueba_udd_map_network_traffic("*")` | table actor__user__name, src_endpoint__ip, traffic__bytes_in, traffic__bytes_out | head 10