Performance API
Use the Performance API to track performance of a deployment.
All URIs are relative to
https://api.imply.io/v1
Get the storage statistics for a deployment
URL
GET /performance/storage
Responses
A successful request returns an HTTP 2XX
status code and a JSON key-value pair with the following format:
- Key:
tableStorage
- Value: A JSON object with the following fields:
usedBytes
: The total space used, in bytes.maxBytes
: The maximum storage space that can be used, in bytes.
OK.
Sample request
curl --location --request GET 'https://api.imply.io/v1/performance/storage' \
--header 'Authorization: Bearer <Bearer Token>'
Sample response
{
"tableStorage": {
"usedBytes": 871559420,
"maxBytes": 858993459200
}
}