Azure サブスクリプションがあります。 Azure AD のログは、Log Analytics ワークスペースに送信されます。 ログを照会し、ユーザーごとのサインイン数をグラフィカルに表示する必要があります。 クエリをどのように完了する必要がありますか? 回答するには、回答エリアで適切なオプションを選択します。
正解:
Explanation: Box 1 = SigninLogs | where ResultType == 0 | summarize login_count = count() by identity | render piechart This query retrieves the sign-in logs, filters the successful sign-ins, summarizes the count of sign-ins per user, and renders the result as a pie chart. Box 2 = Render