# Get cloud storage status for a partition **GET /v1/cloud_storage/status/{topic}/{partition}** Get cloud storage status for a partition. ## Servers - http://localhost:9644: http://localhost:9644 () ## Parameters ### Path parameters - **topic** (string) - **partition** (integer) ## Responses ### 200 Partition cloud storage status response #### Body: application/json (object) - **cloud_storage_mode** (string) The partition's cloud storage mode (`disabled`, `write_only`, `read_only`, `full`, or `read_replica`). - **ms_since_last_manifest_upload** (integer) Delta in milliseconds since the last upload of the partition's manifest - **ms_since_last_segment_upload** (integer) Delta in milliseconds since the last segment upload for the partition - **ms_since_last_manifest_sync** (integer) Delta in milliseconds since the last manifest sync. Only present for read replicas. - **metadata_update_pending** (boolean) If `true`, the remote metadata may not yet include all segments that have been uploaded - **total_log_size_bytes** (integer) Total size of the log for the partition (overlap between local and cloud log is excluded) - **cloud_log_size_bytes** (integer) Total size of the addressable cloud log for the partition - **local_log_size_bytes** (integer) Total size of the addressable local log for the partition - **cloud_log_segment_count** (integer) Number of segments in the local log - **cloud_log_start_offset** (integer | null) The first Kafka offset accessible from the cloud (inclusive) - **cloud_log_last_offset** (integer | null) The last Kafka offset accessible from the cloud (inclusive) - **local_log_start_offset** (integer | null) The first Kafka offset accessible locally (inclusive) - **local_log_last_offset** (integer | null) The last Kafka offset accessible locally (inclusive) [Powered by Bump.sh](https://bump.sh)