Control 4.5: SharePoint Security and Compliance Monitoring - Troubleshooting
This playbook provides troubleshooting guidance for Control 4.5.
Common Issues and Solutions
| Issue | Symptoms | Solution |
|---|---|---|
| Agent insights not appearing | "View reports" shows no data or errors | Verify SharePoint Advanced Management license is assigned; data may take 24-48 hours to populate initially |
| Data access reports empty | Reports generate but show no content | Ensure site activity exists; run "Get started" to initialize baseline if first use |
| Dashboard cards missing data | Home dashboard shows blanks or errors | Check SharePoint Admin role assignment; verify browser isn't blocking scripts |
| Audit log search returns no results | Search completes but finds nothing | Verify unified audit logging is enabled; check date range (max 90 days for standard) |
| Advanced management features unavailable | Features grayed out or missing | Confirm SharePoint Advanced Management license; some features require E5 |
| Export failures | Report export times out or fails | Reduce date range; filter by specific users or operations; try during off-peak hours |
| Real-time alerts not triggering | Expected alerts not received | Check alert policy configuration; verify recipient email; review alert threshold settings |
Diagnostic Steps
1. Verify Licensing
Get-MgSubscribedSku | Where-Object {
$_.SkuPartNumber -like "*SPE_E5*" -or
$_.SkuPartNumber -like "*SHAREPOINTENTERPRISE*"
}
2. Check Audit Logging Status
Get-AdminAuditLogConfig | Select-Object UnifiedAuditLogIngestionEnabled
3. Verify SharePoint Admin Access
Get-MgUserMemberOf -UserId "admin@contoso.com" |
Where-Object { $_.AdditionalProperties.displayName -like "*SharePoint*" }
4. Test Report Generation
- Navigate to SharePoint Admin Center > Reports > Data access governance
- Click "Get started" to run initial assessment
- Wait for completion (may take several hours for large tenants)
Escalation Path
| Issue Severity | Escalation Path | SLA |
|---|---|---|
| Reports not loading after 48 hours | SharePoint Admin > Microsoft Support | 2 business days |
| Audit logging gaps | Security Admin > Purview Support | 1 business day |
| Agent insights missing for licensed tenant | SharePoint Admin > Microsoft Support | 2 business days |
| Real-time monitoring failures | Security Operations > Microsoft Support | Same day |
Prevention Best Practices
- Verify licensing before relying on advanced features
- Enable audit logging at tenant setup
- Schedule regular checks of monitoring capabilities
- Document baseline metrics for comparison
- Test exports periodically to ensure data retrieval works
- Configure redundant alerting for critical events
Related Resources
- Agent insights in SharePoint
- Data access governance reports
- SharePoint Advanced Management overview
- Microsoft Purview Audit overview
Back to Control 4.5 | Portal Walkthrough | PowerShell Setup | Verification Testing
Updated: January 2026 | Version: v1.2