Trendof Requests
Query
//Example shows the trend of requests to an app over the previous days
OfficeActivity
| make-series Requests = count() default = 0 on TimeGenerated from ago(1d) to now() step 1hExplanation
This query analyzes the number of requests made to an app over the past day and displays the trend of these requests over time.