共用方式為


使用量數據表的查詢

如需在 Azure 入口網站 中使用這些查詢的詳細資訊,請參閱Log Analytics教學課程。 如需 REST API,請參閱 查詢

依數據類型使用

圖表目前針對每個數據類型所報告的記錄數量。

Usage
| summarize count_per_type=count() by DataType
| sort by count_per_type desc
| render piechart

可計費的效能數據

計算 Perf 數據的可計費數據量(以 GB 為單位),最後一天。

Usage
| where TimeGenerated > ago(1d)
| where IsBillable == true
| where DataType == "Perf"
| summarize TotalVolumeGB = sum(Quantity) / 1024

解決方案的數據量

繪製每個解決方案所傳送的數據量(以 Mb 為單位)。

Usage
| summarize total_MBytes=sum(Quantity) by Solution
| sort by total_MBytes desc nulls last
| render barchart

過去24小時內工作區擷取總計

過去24小時內內嵌至此工作區之所有數據的磁碟區 (GB)。

Usage
|where TimeGenerated > ago(24h)
|summarize TotalIngestionVolGB = sum(Quantity)/1024.0

Container Insight 解決方案計費數據

請參閱 Container Insights 解決方案的總計費數據。

//This includes billable data for all solutions in the workspace, see for Container Insights solution
Usage
| where TimeGenerated > startofday(ago(30d))
| where IsBillable == true
| summarize TotalVolumeGB = sum(Quantity) / 1000 by bin(TimeGenerated, 1d), Solution
| render barchart