Sdílet prostřednictvím


Dotazy na tabulku ACSAdvancedMessagingOperations

Informace o používání těchto dotazů na webu Azure Portal najdete v kurzu služby Log Analytics. Informace o rozhraní REST API najdete v tématu Dotaz.

Pokročilé operace zasílání zpráv

Vrátí všechny odlišné kombinace párů operací rozšířeného zasílání zpráv a verzí.

ACSAdvancedMessagingOperations
| distinct OperationName, OperationVersion 
| limit 100

Pokročilé operace zasílání zpráv – percentily doby trvání

Vypočítá 90., 95. a 99. percentil doby trvání spuštění v milisekundách pro každou operaci chatu. Dá se přizpůsobit tak, aby běžela pro jednu operaci nebo pro jiné percentily.

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

Rozšířené IP adresy pro zasílání zpráv s nejvyššími 5 IP adresami na operaci

Pro každou operaci rozšířeného zasílání zpráv načtěte 5 IP adres, které volali nejčastěji.

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

Pokročilé provozní chyby zasílání zpráv

Uveďte všechny chyby rozšířeného zasílání zpráv seřazené podle aktuálnosti.

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

Počet výsledků operace rozšířeného zasílání zpráv

Pro každou operaci rozšířeného zasílání zpráv spočítejte typy vrácených výsledků.

ACSAdvancedMessagingOperations
| summarize Count = count() by OperationName, OperationVersion, 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

Aktivita kanálu rozšířeného zasílání zpráv

Souhrn aktivity zpráv na kanál za posledních 24 hodin

ACSAdvancedMessagingOperations
| where TimeGenerated > ago(24h)
| summarize count() by ChannelId, MessageType
| order by ChannelId asc

Počet zpráv rozšířeného zasílání zpráv

Počet zpráv za posledních 24 hodin

ACSAdvancedMessagingOperations
| where TimeGenerated > ago(24h)
| summarize Count = count() by MessageType, MessageStatus
| order by MessageType asc, Count desc