استعلامات لجدول ACSCallAutomationIncomingOperations
للحصول على معلومات حول استخدام هذه الاستعلامات في مدخل Microsoft Azure، راجع البرنامج التعليمي Log Analytics. للحصول على واجهة برمجة تطبيقات REST، راجع الاستعلام.
عمليات أتمتة المكالمات
إرجاع جميع المجموعات المميزة لعملية أتمتة المكالمات وأزواج الإصدارات.
ACSCallAutomationIncomingOperations
| distinct OperationName, OperationVersion
| limit 100
حساب النسب المئوية لمدة عملية أتمتة المكالمات
حساب النسب المئوية 90 و95 و99 من مدة التشغيل بالمللي ثانية لكل عملية أتمتة المكالمات. يمكن تخصيصه ليتم تشغيله لعملية واحدة، أو للنسب المئوية الأخرى.
ACSCallAutomationIncomingOperations
// where OperationName == "<operation>" // This can be uncommented and specified to calculate only a single operation's duration percentiles
| summarize percentiles(DurationMs, 90, 95, 99) by OperationName, OperationVersion // calculate 90th, 95th, and 99th percentiles of each Operation
| limit 100
أعلى 5 عناوين IP لكل عملية أتمتة المكالمات
لكل عملية أتمتة المكالمات، قم بإحضار عناوين IP 5 التي استدعت تلك العملية أكثر من غيرها.
ACSCallAutomationIncomingOperations
// | where OperationName == "<operation>" // This can be uncommented and specified to calculate only a single operation's count
| top-nested of OperationName by dummy=max(0), // For all the Operations...
top-nested 5 of CallerIpAddress by count() // List the IP address that have called that operation the most
| project-away dummy // Remove dummy line from the result set
| limit 100
أخطاء تشغيلية في أتمتة المكالمات
سرد كل خطأ في أتمتة المكالمات مرتب بواسطة الكنسية.
ACSCallAutomationIncomingOperations
| where ResultType == "Failed"
| project TimeGenerated, OperationName, OperationVersion, ResultSignature
| order by TimeGenerated desc
| limit 100
عدد نتائج عملية أتمتة المكالمات
لكل عملية أتمتة المكالمات، قم بحساب أنواع النتائج التي تم إرجاعها.
ACSCallAutomationIncomingOperations
| summarize Count = count() by OperationName, ResultType //, ResultSignature // This can also be uncommented to determine the count of each ResultSignature for each ResultType
| order by OperationName asc, Count desc
| limit 100
سجلات أتمتة المكالمات لمعرف اتصال المكالمات
الاستعلامات سجلات أتمتة المكالمات لمعرف اتصال مكالمة معين.
ACSCallAutomationIncomingOperations
//| where CallConnectionId == "<callConnectionId>" // This can be uncommented to filter on a specific call connection ID
| limit 100
عمليات واجهة برمجة تطبيقات أتمتة المكالمات عند إجراء مكالمة
إرجاع جميع عمليات واجهة برمجة تطبيقات أتمتة المكالمات وأزواج الإصدارات لاستدعاء معين (معرف الارتباط).
ACSCallAutomationIncomingOperations
//| where CorrelationId == "<correlation ID>" // This can be uncommented to filter on a specific correlation ID
| project CorrelationId, OperationName, OperationVersion
| limit 100
سجل CallDiagnostics لاستدعاء واجهة برمجة تطبيقات CallAutomation
الاستعلام عن سجل التشخيص لاستدعاء تم التفاعل معه بواسطة واجهة برمجة تطبيقات أتمتة المكالمات باستخدام معرف الارتباط.
ACSCallAutomationIncomingOperations
//| where CorrelationId == "<correlation ID>" // This can be uncommented to filter on a specific correlation ID
| join kind=inner
(ACSCallDiagnostics)
on CorrelationId
| limit 100
سجل CallSummary لاستدعاء واجهة برمجة تطبيقات CallAutomation
الاستعلام عن سجل الملخص لاستدعاء تم التفاعل معه بواسطة واجهة برمجة تطبيقات أتمتة المكالمات باستخدام معرف الارتباط.
ACSCallAutomationIncomingOperations
//| where CorrelationId == "<correlation ID>" // This can be uncommented to filter on a specific correlation ID
| join kind=inner
(ACSCallSummary)
on CorrelationId
| limit 100