How can a report of all storage containers created for a storage account be created

Morris, Michael A 40 Reputation points
2023-05-15T22:06:18.75+00:00

How can a report of all storage containers created/deleted for a storage account be created? Is it possible to generate this report for multiple storage accounts at once?

Azure Storage
Azure Storage
Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
3,543 questions
0 comments No comments
{count} votes

Accepted answer
  1. Sumarigo-MSFT 47,471 Reputation points Microsoft Employee Moderator
    2023-05-16T10:07:23.6733333+00:00

    @Morris, Michael A Welcome to Microsoft Q&A Forum, Thank you for posting your query here!

    To generate a report of all storage containers created or deleted for a storage account, you can leverage Azure Monitor and Azure Log Analytics. However, there is no built-in mechanism in Azure to directly track container-level operations like creation or deletion. Azure Blob Storage logs only capture storage account-level operations.

    Reference link : https://learn.microsoft.com/en-us/azure/azure-monitor/reference/tables/storagebloblogs

    StorageBlobLogs

    | where OperationName == "Create"

    | project TimeGenerated, AccountName, ContainerName, ResourceId

    You can refer to the video (at 36.55) https://www.youtube.com/watch?v=YeYtpu1ecP8 complete details of usage and management of azure storage account . (Tools available for reviewing log data)

    User's image

    Please let us know if you have any further queries. I’m happy to assist you further.


    Please do not forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.