You have an Azure subscription that contains a storage account named STOR1 and a container name
CONTAINER1.
You need to monitor read access for the blobs inside CONTAINER1.
The monitoring data must be retained for 10 days.
What should you do?

A.
Run the Set-AzureStorageServiceMetricsProperty cmdlet.
B.
Run the New-AzureStorageBlobSASToken cmdlet.
C.
Run the Set-AzureStorageServiceLoggingProperty cmdlet.
D.
Edit the blob properties of CONTAINER1.
Explanation:
https://msdn.microsoft.com/library/mt603595.aspx?f=255&MSPPError=-2147217396
The Set-AzureStorageServiceLoggingProperty cmdlet modifies logging for Azure Storage services.
https://docs.microsoft.com/en-us/powershell/module/azure.storage/set-azurestorageserviceloggingproperty?view=azurermps-6.5.0
1
0
Storage Logging happens server-side and enables you to record details for both successful and failed requests in your storage account. These logs enable you to see details of read, write, and delete operations against your Azure tables, queues, and blobs. They also enable you to see the reasons for failed requests such as timeouts, throttling, and authorization errors.
References:
https://docs.microsoft.com/ru-ru/rest/api/storageservices/enabling-storage-logging-and-accessing-log-data
3
0