How can I locate an Azure resource or setting creating empty WADMetrics Tables?

允我心安 提交于 2019-12-22 13:56:14

问题


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:

  1. Go to Azure portal
  2. Choose the relevant storage account.
  3. On the left pane - click Diagnostics and check 'Table logs'.
  4. 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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!