Intune Enrollment Events Trend
Query
//Enrollment Events Trend
IntuneOperationalLogs
| where OperationName=="Enrollment"
| summarize OperationCount=count() by bin(TimeGenerated, {TimeRange:grain})Explanation
This query is looking at the Intune operational logs and filtering for events related to enrollment. It then groups the events by a specified time range and counts how many events occurred within each time range.