NQL summarize by
Grouping by property
Syntax
...
| summarize <new metric name> = <metric>.<aggregation function> by <field_1>, <field_2> ...Example
web.page_views during past 7d
| where application.name == "Confluence"
| summarize backendTime = page_load_time.backend.avg() by device.name
| list device.name, backendTime
| sort backendTime descDevice name
backendTime
Grouping by period
Syntax
Example
start_time
end_time
bucket_duration
number_of_crashes
Grouping by property and period
Syntax
Example
Device platform
start_time
end_time
bucket_duration
number_of_crashes
Last updated
Was this helpful?