NQL compute
Syntax
...
| include...
| compute <new_metric> = <metric>.<aggregation function>...
| with...
| compute <new_metric> = <metric>.<aggregation function>Example
devices during past 7d
| include execution.crashes during past 7d
| compute nb_crashes = number_of_crashes.sum()Using with the ‘count()’ function
devices during past 7d
| include device_performance.boots during past 7d
| compute nb_boots = count()Last updated
Was this helpful?