หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
This article shows you how to track your Lakehouse Monitoring expenses. You can check expenses using a query or using the billing portal.
View usage from the system table system.billing.usage
You can check Lakehouse Monitoring expenses using the system table system.billing.usage
. Lakehouse Monitoring is billed under a serverless jobs SKU but does not require your account to be enabled for serverless compute for workflows.
For more information on querying billing records, see Billable usage system table reference.
SELECT usage_date, sum(usage_quantity) as dbus
FROM system.billing.usage
WHERE
usage_date >= DATE_SUB(current_date(), 30) AND
sku_name like "%JOBS_SERVERLESS%" AND
custom_tags["LakehouseMonitoring"] = "true"
GROUP BY usage_date
ORDER BY usage_date DESC
View usage from the billing portal
You can also check Lakehouse Monitoring expenses using the billing portal.
- Log in to the Azure portal and view your billing account.
- Select the tag
lakehousemonitoring : true
.