MicrosoftDataShareReceivedSnapshotLog 테이블에 대한 쿼리
Azure Portal에서 이러한 쿼리를 사용하는 방법에 대한 자세한 내용은 Log Analytics 자습서를 참조하세요. REST API는 쿼리를 참조 하세요.
지난 7일 동안의 기간별로 정렬된 스냅샷 목록입니다.
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
지난 7일 동안 실패한 스냅샷의 수입니다.
MicrosoftDataShareReceivedSnapshotLog
| where TimeGenerated > ago(7d)
| where Status == "Failed"
| summarize count() by _ResourceId
지난 7일 동안 가장 자주 발생된 상위 10개 오류입니다.
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
지난 주에 대한 일일 스냅샷 수의 시간 차트입니다.
// 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