Reputation: 3034
Every 70 minutes or so, something is downloading some hundred megabytes of data from one of my azure storage accounts. Is there any way to figure out what is the cause?
All the logs and statistics I've looked at only give me graphs like this:
which tells me that stuff has been downloaded, but not what or by who
Upvotes: 0
Views: 1012
Reputation: 136126
You can find this information by viewing Storage Analytics
data especially the logging data
contained in $logs
blob container in the storage account in question.
You can use Microsoft Storage Explorer
or any other storage explorer to browse the contents of this blob container and download appropriate blob. The request you would want to look into is GetBlob
(that's the request sent to Azure Storage for downloading blob).
Upvotes: 2