Can someone guide me to retrieve logging information of Storage Queue Service similar to the part I have circled in red as instructed in this article?
Image:
Article link: https://www.trendmicro.com/cloudoneconformity/knowledge-base/azure/StorageAccounts/storage-logging-for-queue-service.html
I use Python Azure SDK to do this
Thank you !
I want to check if the Read-Write-Delete actions are Enabled or Not, but currently, I have not found any similar documentation from Microsoft.
You can use the below code to retrieve logging information of Storage Queue Service using Azure Python SDK.
You need to install the azure-storage-queue package in your environment.
Code:
The above code is using the
Azure Storage Queue Python SDK
to connect to an Azure Storage account using the connection string. It then creates aQueueServiceClient
object using the connection string and retrieves the service properties of the queue service. Finally, it retrieves the analytics logging setting from the service properties.Output:
Similarly, you can use the azure-storage-blob and azure-storage-table package for retrieve logging information of Azure storage Blob, Table service using Azure Python SDK.