Condividi tramite


Query per la tabella MicrosoftDataShareReceivedSnapshotLog

Per informazioni sull'uso di queste query nella portale di Azure, vedere Esercitazione su Log Analytics. Per l'API REST, vedere Query.

Elencare gli snapshot ricevuti per durata

Elenco degli snapshot ordinati in base al tempo di durata, negli ultimi 7 giorni.

MicrosoftDataShareReceivedSnapshotLog
| where TimeGenerated > ago(7d)  
| where StartTime != "" and EndTime  != ""
| project StartTime , EndTime , DurationSeconds =(todatetime(EndTime)-todatetime(StartTime))/1s, ResourceName = split(_ResourceId,"/accounts/",1)// use split to get a part of the _ResourceId  
| sort by DurationSeconds desc nulls last

Numero di snapshot ricevuti non riusciti

Numero di snapshot non riusciti negli ultimi 7 giorni.

MicrosoftDataShareReceivedSnapshotLog
| where TimeGenerated > ago(7d)  
| where Status == "Failed" 
| summarize count() by _ResourceId 

Errori frequenti negli snapshot ricevuti

Primi 10 errori più frequenti negli ultimi 7 giorni.

MicrosoftDataShareReceivedSnapshotLog 
| where TimeGenerated > ago(7d)  
| where Status == "Failed" 
| summarize count() by _ResourceId, DataSetType // Counting failed logs per datasettype
| top 10 by count_ desc nulls last

Grafico degli snapshot ricevuti giornalieri

Grafico temporale del conteggio degli snapshot giornalieri, nell'ultima settimana.

// Failed, In Progress and Succeeded Received Snapshots
MicrosoftDataShareReceivedSnapshotLog 
| where TimeGenerated > ago(7d)  
| summarize count() by bin(TimeGenerated, 1d), Status , _ResourceId // Aggregating by day //Click "Table" to see resource's name.
| render timechart