استعلامات لجدول WVDErrors
للحصول على معلومات حول استخدام هذه الاستعلامات في مدخل Microsoft Azure، راجع البرنامج التعليمي Log Analytics. للحصول على واجهة برمجة تطبيقات REST، راجع الاستعلام.
أهم 10 أخطاء في الاتصال
إرجاع أهم 10 أخطاء اتصال من جانب التوزيع حسب عدد المستخدمين.
// You can replace "UserName" in the query by "CorrelationId" to see how many connections each error has impacted.
// The "CorrelationId" is unique for each connection attempt.
// The flag on "ServiceError" helps to focus on issues that are most likely mitigated by the administrator or end user.
// Change the ActivityType based on the type of issues you are troubleshooting.
WVDErrors
| where ServiceError == "false"
| where ActivityType == "Connection"
| summarize UserCount = dcount(UserName), SampleMessage = take_any(Message) by CodeSymbolic
| project SampleMessage, UserCount
| top 10 by UserCount desc
// Go to https://aka.ms/wvdgetstarted and review additional guidance for diagnostics in the How To section.
// Our troubleshooting guidance has information on escalation paths.
أهم 10 أخطاء في الموجز
إرجاع أهم 10 أخطاء موجز من جانب التوزيع حسب عدد المستخدمين.
// You can replace "UserName" in the query by "CorrelationId" to see how many feed refresh attempts each error has impacted.
// The "CorrelationId" is unique for each feed refresh attempt.
// The flag on "ServiceError" helps to focus on issues that are most likely mitigated by the administrator or end user.
// Change the ActivityType based on the type of issues you are troubleshooting.
WVDErrors
| where ServiceError == "false"
| where ActivityType == "Feed"
| summarize UserCount = dcount(UserName), SampleMessage = take_any(Message) by CodeSymbolic
| project SampleMessage, UserCount
| top 10 by UserCount desc
// Go to https://aka.ms/wvdgetstarted and review additional guidance for diagnostics in the How To section.
// Our troubleshooting guidance has information on escalation paths.