Query Details

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 1h

Explanation

This query analyzes the number of requests made to an app over the past day and displays the trend of these requests over time.

Details

Rod Trent profile picture

Rod Trent

Released: February 14, 2023

Tables

OfficeActivity

Keywords

OfficeActivity,make-series,Requests,count(),default,TimeGenerated,ago(),now(),step,1h

Operators

make-seriescount()defaultonfromago()tonow()step

Actions