问题
We have a resource constantly creating completely empty WADMetrics tables on a storage account. We have a significant amount of Azure resources and are unable to locate what is creating them since they are completely empty. It appears 2 tables are created every 10 days designed to store data in 1Hour and 5Min buckets.
How can we determine what is creating these tables?
回答1:
WAD stands for Windows Azure Diagnostics, which is probably enabled on a VM or other computing resource that uses this storage account for diagnostics.
You can read more here about WAD and specifically about WADMetrics table.
If you know what service is using this storage, you can simply disable Diagnostics.
Also, generally speaking, you can turn on storage diagnostics, specifically Table Service logs, to see who's creating those tables:
- Go to Azure portal
- Choose the relevant storage account.
- On the left pane - click Diagnostics and check 'Table logs'.
- A new container named '$logs' will be created in the storage account, containing all the logs you've enabled.
Those logs audit all the operations executed on this storage Azure tables.
来源:https://stackoverflow.com/questions/43147256/how-can-i-locate-an-azure-resource-or-setting-creating-empty-wadmetrics-tables