問題
ホットスポット -
あなたは、ホーム ページのページ読み込みパフォーマンスに基づいてトリガーされるアラートを作成する予定です。
次の Application Insights ログ クエリ (概要) を確認してください。
requests
| where timestamp >= ago(7d)
| where operation_Name endswith 'Home/Index'
| where operation_Name startswith 'GET'
| summarize percentiles(duration, 50, 90, 95) by bin(timestamp, 1h)
| extend threshold = 675
| render timechart
このクエリでは、duration の 50/90/95 パーセンタイル (percentile_duration_50, percentile_duration_90, percentile_duration_95) と固定しきい値 threshold=675 が時系列でレンダリングされています。
次の 2 つの文を完成させる選択肢として、最も適切な組み合わせはどれですか?
文 1: ほとんどのユーザーのページ読み込み体験に基づいてアラートを作成するには、アラート レベルを [回答] に基づかせる必要がある。
選択肢: percentile_duration_50 / percentile_duration_90 / percentile_duration_95 / threshold
文 2: 認証エラーがサーバーで発生したときにのみアラートを作成するには、クエリを [回答] でフィルタリングする必要がある。
選択肢: itemType / resultCode / source / success