Sdílet prostřednictvím


Dotazy na tabulku ACSNetworkTraversalIncomingOperations

Jedinečné operace procházení sítě

Vrátí všechny odlišné kombinace párů operace procházení sítě a verzí.

ACSNetworkTraversalIncomingOperations
| summarize Count = count() by OperationName, OperationVersion
| sort by Count desc
| limit 100

Výpočet percentilů doby trvání operace procházení sítě

Vypočítá 90., 95. a 99. percentil doby běhu v milisekundách pro každou operaci procházení sítě. Dá se přizpůsobit tak, aby se spouštěla pro jednu operaci nebo pro jiné percentily.

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

Provozní chyby služby Network Traversal

Vypíše všechny chyby procházení sítě seřazené podle aktuálnosti.

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

Počty výsledků operace procházení sítě

Pro každou operaci Procházení sítě spočítejte typy vrácených výsledků.

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