Hello @Goud, Madhu !
Welcome to Microsoft QnA!
you can utilize Azure Monitor :
Here's an example query to retrieve the data ingested to your ADLS Gen2 storage account on a daily basis:
StorageBlobLogs
| where TimeGenerated > ago(1d)
| where OperationName == "PutBlob"
As Azure CoPilot is saying :
To enable Azure Storage logs in Azure Monitor through the Azure portal, you can follow these steps:
- Navigate to the Azure portal and sign in with your Azure account.
- In the left-hand menu, click on "Storage accounts".
- Select the storage account for which you want to enable logs.
- In the storage account menu, click on "Diagnostic settings".
- Click on "+ Add diagnostic setting".
- In the "Diagnostic setting" form, provide a name for the setting.
- Check the "Archive to a storage account" box and select the storage account where you want to save the logs.
- In the "Log" section, select the logs you want to enable.
- Click on "Save".
Once you have enabled the logs, you can view them in Azure Monitor.
For more detailed instructions, you can refer to the following Azure documentation:
- Enable and manage Azure Storage Analytics logs (classic)
- Monitoring Azure Blob Storage
- Monitoring Azure Queue Storage
- Monitoring Azure Table storage
--
I hope this helps!
The answer or portions of it may have been assisted by AI Source: Azure Co Pilot
Kindly mark the answer as Accepted and Upvote in case it helped!
Regards