dcos backup show

ENTERPRISE

Viewing details of a backup

Description

The dcos backup show command shows the details of a specified backup.

Usage

  1. dcos backup show <backup id> [flags]

Options

NameDescription
—help, hDisplay help for this command.

Positional Arguments

NameDescription
<backup id>ID number or label of existing backup.

Example

  1. To find the backup ID for all your backups, run dcos backup list.

    1. $ dcos backup list
    2. BACKUP ID VERSION STATUS TIMESTAMP
    3. --------- ------- ------ ---------
    4. backup2-c55c20e9-ba3f-46a6-b944-20a790b5491a 1.13.0 STATUS_READY 2019-03-18 23:15:47.639999548 +0000 UTC
    5. backup3-317c19df-34e4-41a0-93c9-d66c7f307208 1.13.0 STATUS_READY 2019-03-18 23:16:33.265478871 +0000 UTC
  2. Now you can run your dcos backup show command with the backup ID:

    1. $ dcos backup show backup3-317c19df-34e4-41a0-93c9-d66c7f307208
    2. {
    3. "dcos_version": "1.13.0",
    4. "id": "backup3-317c19df-34e4-41a0-93c9-d66c7f307208",
    5. "component_status": {
    6. "marathon": {
    7. "status": "STATUS_READY"
    8. }
    9. },
    10. "timestamp": "2019-03-18T23:16:33.265478871Z",
    11. "status": "STATUS_READY"
    12. }

Parent command

CommandDescription
dcos backupCreate, delete, list, restore and show backup commands.