Megosztás a következőn keresztül:


Az ACSJobRouterIncomingOperations tábla lekérdezései

Feladat útválasztó-műveletei

A feladat útválasztó-műveletének és verziópárjainak összes különböző kombinációját adja vissza.

ACSJobRouterIncomingOperations
| distinct OperationName, OperationVersion 
| limit 100

Feladat útválasztó-műveletének időtartamának percentiliseinek kiszámítása

Kiszámítja a futtatási időtartam 90., 95. és 99. percentiliseit ezredmásodpercben az egyes csevegési műveletekhez. Testre szabható úgy, hogy egyetlen művelethez vagy más percentilisekhez fusson.

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

Az 5 legfontosabb IP-cím feladat útválasztónkénti művelete

Minden feladat útválasztó-műveletéhez kérje le az 5 IP-címet, amelyek ezt a műveletet hívták a legjobban.

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

Feladat-útválasztó működési hibái

Sorolja fel az összes feladat-útválasztó hibát, amelyet a rendszer helyesbítés alapján rendez.

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

Feladat-útválasztó művelet eredményének száma

Minden feladat útválasztó-műveletéhez számolja meg a visszaadott eredmények típusait.

ACSJobRouterIncomingOperations
| summarize Count = count() by OperationName, OperationVersion, ResultType, SdkType, EntityType //, ResultSignature // This can also be uncommented to determine the count of each ResultSignature for each ResultType 
| order by OperationName asc, Count desc
| limit 100