Control 3.9: Microsoft Sentinel Integration - Troubleshooting
This playbook provides troubleshooting guidance for Control 3.9.
Common Issues and Resolutions
Issue: Data Connector Not Receiving Data
Symptoms: Connector shows "Connected" but no data in tables
Resolution:
- Verify source system is generating logs
- Check diagnostic settings are enabled
- Confirm Log Analytics workspace is correct
- Allow 24 hours for initial data ingestion
- Check for firewall blocking Azure endpoints
Issue: Analytics Rule Not Triggering
Symptoms: Matching events exist but no alerts
Resolution:
- Verify rule is enabled
- Check query returns results manually
- Verify time range covers recent data
- Check trigger threshold setting
- Review rule execution history
Issue: High False Positive Rate
Symptoms: Too many alerts for normal activity
Resolution:
- Refine KQL query with exclusions
- Adjust baseline period length
- Increase deviation threshold
- Add entity allowlisting
- Consider machine learning rules
Issue: Workbook Performance Slow
Symptoms: Workbook takes long to load
Resolution:
- Reduce query time range
- Optimize KQL queries
- Use materialized views
- Implement pagination
- Consider dedicated cluster
Diagnostic KQL Queries
// Check data freshness by table
union withsource=TableName *
| summarize LastRecord = max(TimeGenerated) by TableName
| order by LastRecord desc
// Check ingestion latency
OfficeActivity
| where TimeGenerated > ago(1h)
| extend IngestionDelay = ingestion_time() - TimeGenerated
| summarize AvgDelay = avg(IngestionDelay) by bin(TimeGenerated, 5m)
// Rule execution history
SentinelHealth
| where TimeGenerated > ago(24h)
| where OperationName == "AlertRule"
| summarize Count = count() by Status, AlertRuleName
Escalation Path
| Issue Severity | Escalate To | Response Time |
|---|---|---|
| No data ingestion | Azure Support | 4 hours |
| Rule execution failure | Security Operations | 4 hours |
| Performance degradation | Platform Admin | 24 hours |
| False positive review | AI Governance Lead | 48 hours |
Next Steps
- Portal Walkthrough - Manual configuration
- PowerShell Setup - Automation scripts
- Verification & Testing - Test procedures
Updated: January 2026 | Version: v1.2