Bucket Usage
Get API Usage
Returns the detail on API usage on a bucket of a particular time period, group by method category.
get/storage/buckets/{bucketName}/usage/api
Path parameters
bucketNamestring required
The name of the bucket
Query parameters
Consolidated filter parameter (deepObject style). Originally: filter[start_time], filter[end_time]
Response
Bucket Usage
Example response
{
"data": [
{
"categories": [
{
"bytes_received": 123456,
"bytes_sent": 123456,
"category": "put_obj",
"ops": 123456,
"successful_ops": 123456
}
],
"timestamp": "2020-01-01T00:00:00Z",
"total": {
"bytes_received": 123456,
"bytes_sent": 123456,
"ops": 123456,
"successful_ops": 123456
}
}
]
}