devices
| with execution.crashes during past 1d
| summarize devices = count()
ダッシュボードに次のフィルタを適用します。
期間選択ツールから最後の1時間。
OSフィルタからMac。
調査ページは、変更されたNQLクエリを使用して結果を表示します。
devices during past 60min
| where device.operating_system.platform == macOS
| with execution.crashes during past 60min
| where device.operating_system.platform == macOS
| summarize devices = count()
devices
| with execution.crashes during past 1d
| summarize devices = count()
ダッシュボードに次のフィルタを適用します。
期間選択ツールから最後の1時間
OSフィルタからMac
調査ページは、変更されたNQLクエリを使用して結果を表示します。
devices during past 60min
| where device.operating_system.platform == macOS
| include execution.crashes during past 60min
| where device.operating_system.platform == macOS
| compute number_of_events_ = crash.number_of_crashes.sum()
| where number_of_events_ != 0
| list
device.name,
device.entity,
device.hardware.model,
device.hardware.type,
device.operating_system.name
調査ページにおける変更されたクエリには次の点が含まれます。
フィルタ変更 where device.operating_system.platform == macOS
期間選択ツールの変更 during past 60min
summarize行の変換をlist行にする
list行が返すフィールドは以下の通りです。
ルートテーブルのデフォルトフィールド、たとえばクエリの最初の行で参照するテーブル
特定のフィールドに集計を行う場合、特定のフィールドが返されます:
summarize num_freezes = execution.event.number_of_freezes.sum()は
list [デフォルトのフィールド], execution.event.number_of_freezesに変換されます。