MetricsExportStatusResponse

MetricsExportStatusResponse
Metrics Export Status Response

Response containing the status and details of a metrics export request.

JSON Example
{
    "id": "string",
    "status": "string",
    "format": "string",
    "download_url": "string",
    "file_size": 0,
    "status_message": "string",
    "requested_at": 0,
    "expires_at": 0,
    "request": {}
}
string
id
Optional

The ID of the export request.

status
Optional

The status of the export request.

Enumeration: REQUESTED, IN_PROGRESS, READY, ERROR, EXPIRED
format
Optional

The format of the exported data.

string
download_url
Optional

The URL to download the exported file, if the status is READY.

integer As int64 As int64
file_size
Optional

The size of the exported file in bytes, if the status is READY.

string
status_message
Optional

Status message providing additional details about the export request. Contains error details if the export failed.

requested_at
Optional

The timestamp when the export was requested.

expires_at
Optional

The timestamp (in epoch milliseconds) when the exported file will expire and be deleted. Only set when status is READY.

object
request
Optional

The original export request parameters (either MetricsTimeSeriesExportRequest or MetricsPointInTimeExportRequest).