简体   繁体   中英

Azure Storage Account - Tracking the SAS consumption

I have been searching for a few hours without success if it's possible to track the consumption of a SAS credential on a blob container?

I'm going to give SAS credential to a couple customers and I want to be able to track their usage of their SAS (number of operations, bandwidth usage...)

Is there a way to do it?

Thanks

I use logs for checking or tracking the SAS usage details by using below KQL query in Logs section as below:

Firstly, go to Storage Account, then click on Logs then execute the below Query:

StorageBlobLogs 
| where AuthenticationType contains "SAS"

在此处输入图像描述

By using above query, you can get so many number of details about our SAS usage.

The properties that can be achieved by using above query are here .

Here you can also set a time period between which you want to check the details.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM