Storage-account usage access log entry fields
| Field name | Type | Required | Description |
|---|---|---|---|
| type | String | Yes | The access log entry type, which is always "storage_account_usage" for entries of this type. Used for differentiation from other access log entry types such as http, mirror, or proxy. |
| format | Integer | Yes | The current version of the "storage_account_usage" log entry format. |
| storage_account_id | String | Yes | Storage Account ID |
| storage_location_id | UUID | Yes | Storage account usage aggregated for this Storage Location ID (the container vault). |
| timestamp_finish | long | Yes | The timestamp, in seconds since epoch, when the usage numbers in this access log entry were calculated. |
| time_finish | String | No | A human-readable date string associated with timestamp_finish (ISO 8601). |
| partial_storage_account_bytes_used | String | Yes | Storage Account Bytes Used: Total bytes used by this storage account in this particular vault at the time of this request - converted to String from BigInteger. |
| partial_storage_account_object_count | String | Yes | Storage Account Object Count: Total number of objects in this storage account in this particular vault at the time of this request - converted to String from BigInteger. |
| may_contain_non_active_bytes | Boolean | No | Added in 3.13.3. If set to "false", indicates that the storage location for which usage is being reported only contains active data. If set to "true", indicates that the storage location for which usage is being reported may contain a mix of active and archive data. Once this flag is set to true it will never transition back to false. |
The following code is an example of storage account usage:
{
"partial_storage_account_bytes_used": "1248305490",
"partial_storage_account_object_count": "254",
"storage_account_id": "container-user",
"storage_location_id": "4365dd00-8ada-75a8-004b-12ef097f2b65",
"time_finish": "08/Nov/2016:20:46:55 +0000",
"timestamp_finish": "1478638015792",
"type": "storage_account_usage",
"may_contain_non_active_bytes": false,
"format": 1
}