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.
Details

Rod Trent
Released: July 10, 2020
Tables
IntuneOperationalLogs
Keywords
EnrollmentIntuneOperationalLogsOperationNameOperationCountTimeGeneratedTimeRangeTimeRange:grain
Operators
|where==summarizecount()bybin()