NQL time_elapsed()
Using with the ‘where’ clause
devices
| where operating_system.last_update.time_elapsed() > 15dUsing with the ‘list’ clause
devices
| include device_performance.boots
| where type == fast_startup
| compute last_fast_startup_time = time.last()
| list name, last_fast_startup_time.time_elapsed()Name
Last fast startup time → time elapsed
Using with the ‘compute’ clause
Last updated
Was this helpful?