Поделиться через


Запросы к таблице ACSSMSIncomingOperations

Сведения об использовании этих запросов в портал Azure см. в руководстве по Log Analytics. Сведения о REST API см. в разделе "Запрос".

Перечисление отдельных операций SMS

Возвращает все различные сочетания операций SMS и пар версий.

ACSSMSIncomingOperations
| distinct OperationName, OperationVersion 
| limit 100

Вычисление процентилей длительности операции SMS

Вычисляет 90-е, 95-е и 99-е процентили времени выполнения в миллисекундах для каждой операции SMS. Его можно настроить для одной операции или для других процентилей.

ACSSMSIncomingOperations
// 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-адресов для каждой операции SMS

Для каждой операции SMS получите 5 IP-адресов, которые вызвали большую часть этой операции.

ACSSMSIncomingOperations
// | 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

Операционные ошибки SMS

Перечислить каждую ошибку SMS, упорядоченную по пересчету.

ACSSMSIncomingOperations
| where ResultType == "Failed"
| project TimeGenerated, OperationName, OperationVersion, ResultSignature, ResultDescription
| order by TimeGenerated desc
| limit 100

Количество результатов операции SMS

Для каждой операции SMS подсчитывает типы возвращаемых результатов.

ACSSMSIncomingOperations
| 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