Last updated May 23, 2024

Progress details examples

This page list various examples of progress details.

Progress details for 'jira-onpremises-to-cloud' flow

Check task

migrations/public/v1/jobs/{jobId}/tasks/{taskId}/status

1
2
{
    "data": {
        "status": "IN_PROGRESS",
        "progressDetails": {
            "isSupported": true,
            "percent": 30,
            "data": [
                {
                    "name": "Preflight Checks",
                    "total": 40,
                    "processed": 12
                }
            ]
        }
    } 
}

Migrate task

Preflight checks

migrations/public/v1/jobs/{jobId}/tasks/{taskId}/status&expandChildren=true

1
2
{
    "children": {
        "check": {
            "status": "IN_PROGRESS",
            "message": "Preflight checks are running",
            "progressDetails": {
                "isSupported": true,
                "percent": 30,
                "data": [
                    {
                        "name": "Preflight Checks",
                        "total": 40,
                        "processed": 12
                    }
                ]
            }
        },
        ...
    }
}

User and groups - export

migrations/public/v1/jobs/{jobId}/tasks/{taskId}/status?level=migrate&expandChildren=true

1
2
{
    "children": {
        "usersAndGroups": {
            "status": "IN_PROGRESS",
            "message": "Running Export",
            "progressDetails": {
                "isSupported": true
            }
        },
        ...
    }
}

User and groups - import

migrations/public/v1/jobs/{jobId}/tasks/{taskId}/status?level=migrate&expandChildren=true

1
2
{
    "children": {
        "usersAndGroups": {
            "status": "IN_PROGRESS",
            "message": "Running Import",
            "progressDetails": {
                "isSupported": true,
                "data": [
                    {
                      "name": "usersImport",
                      "total": 1,
                      "processed": 0
                    },
                    {
                      "name": "groupsImport",
                      "total": 4,
                      "processed": 4
                    }
                ]               
            }
        },
        ... 
    }
}

Customers - export

migrations/public/v1/jobs/{jobId}/tasks/{taskId}/status?level=migrate&expandChildren=true

1
2
{
    "children": {
        "customers": {
            "status": "IN_PROGRESS",
            "message": "Running Export",
            "progressDetails": {
                "isSupported": true
            }
        },
        ... 
    }
}

Customers - import

migrations/public/v1/jobs/{jobId}/tasks/{taskId}/status?level=migrate&expandChildren=true

1
2
{
    "children": {
        "customers": {
            "status": "IN_PROGRESS",
            "message": "Running Import",
            "progressDetails": {
                "isSupported": true,
                "data": [
                    {
                        "name": "customersImport",
                        "total": 1,
                        "processed": 0
                    }
                ]               
            }
        },
        ...
    }
}

AR, filters, boards, and dashboard - import

migrations/public/v1/jobs/{jobId}/tasks/{taskId}/status?level=migrate&expandChildren=true

1
2
{
    "children": {
        "ar|filters|dashboards|crossProjectBoards": {
            "status": "IN_PROGRESS",
            "message": "Running Import",
            "progressDetails": {
                "isSupported": true,
                "data": [
                    {
                        "name": "import",
                        "total": 1,
                        "processed": 0
                    }
                ]               
            }
        },
        ...
    }
}

Projects - export

migrations/public/v1/jobs/{jobId}/tasks/{taskId}/status?level=migrate,projects&expandChildren=true

1
2
{
    "children": {
        "YAYD": {
            "status": "IN_PROGRESS",
            "message": "Running Export",
            "progressDetails": {
                "isSupported": true,
                "data": [
                    {
                        "name": "issueExport",
                        "total": 23,
                        "processed": 0
                ]               
            }
        },
        ... 
    }
}

Projects - import

migrations/public/v1/jobs/{jobId}/tasks/{taskId}/status?level=migrate,projects&expandChildren=true

1
2
{
    "children": {
        "YAYD": {
            "status": "IN_PROGRESS",
            "message": "Running Import",
            "progressDetails": {
                "isSupported": true,
                "data": [
                    {
                        "name": "totalEntityImport",
                        "total": 23,
                        "processed": 0
                ]               
            }
        },
        ... 
    }
}

Projects - attachment upload

migrations/public/v1/jobs/{jobId}/tasks/{taskId}/status?level=migrate,projects&expandChildren=true

1
2
{
    "children": {
        "YAYD": {
            "status": "IN_PROGRESS",
            "message": "Uploading Attachments",
            "progressDetails": {
                "isSupported": true,
                "data": [
                    {
                        "name": "uploadAttachmentInBytes",
                        "total": 1327700,
                        "processed": 0
                ]               
            }
        },
        ...
    }
}

Progress details for 'confluence-onpremises-to-cloud' flow

The minimum supported CCMA version for this feature is 3.10.6 .

Check task

migrations/public/v1/jobs/{jobId}/tasks/{taskId}/status

1
2
{
    "data": {
        "status": "IN_PROGRESS",
        "progressDetails": {
            "isSupported": true,
            "percent": 30,
            "data": [
                {
                    "name": "Preflight Checks",
                    "total": 40,
                    "processed": 12
                }
            ]
        }
    } 
}

Migrate task

Preflight checks

migrations/public/v1/jobs/{jobId}/tasks/{taskId}/status&expandChildren=true

1
2
{
    "children": {
        "check": {
            "status": "IN_PROGRESS",
            "message": "Preflight checks are running",
            "progressDetails": {
                "isSupported": true,
                "percent": 30,
                "data": [
                    {
                        "name": "Preflight Checks",
                        "total": 40,
                        "processed": 12
                    }
                ]
            }
        },
        ... 
    }
}

User and groups

migrations/public/v1/jobs/{jobId}/tasks/{taskId}/status?level=migrate&expandChildren=true

1
2
{
    "children": {
      "usersAndGroups": {
        "status": "IN_PROGRESS",
        "message": "Migrating users and groups",
        "progressDetails": {
          "isSupported": true,
          "percent": 20.0
        }
      },
      ...
    }
}

Spaces - upload attachments

migrations/public/v1/jobs/{jobId}/tasks/{taskId}/status?level=migrate,spaces&expandChildren=true

1
2
{
    "children": {
      "HEL2": {
        "status": "IN_PROGRESS",
        "message": "Uploading Attachments",
        "progressDetails": {
          "isSupported": true,
          "percent": 8.0,
          "data": [
            {
              "name": "uploadAttachmentInBytes",
              "total": 26962352,
              "processed": 2264672
            }
          ]
      },
      ...
    }
}

Spaces - export

migrations/public/v1/jobs/{jobId}/tasks/{taskId}/status?level=migrate,spaces&expandChildren=true

1
2
{
    "children": {
      "HEL2": {
        "status": "IN_PROGRESS",
        "message": "Starting space export | Running space export | Starting space user export | Running space user export",
        "progressDetails": {
          "isSupported": true,
          "percent": 80.0
        }
      },
      ...
    }
}

Spaces - upload

migrations/public/v1/jobs/{jobId}/tasks/{taskId}/status?level=migrate,spaces&expandChildren=true

1
2
{
    "children": {
      "HEL2": {
        "status": "IN_PROGRESS",
        "message": "Starting space upload | Running space upload",
        "progressDetails": {
          "isSupported": true,
          "percent": 80.0
        }
      },
      ...
    }
}

Spaces - import

migrations/public/v1/jobs/{jobId}/tasks/{taskId}/status?level=migrate,spaces&expandChildren=true

1
2
{
    "children": {
      "HEL2": {
        "status": "IN_PROGRESS",
        "message": "Running space import | Space import completed",
        "progressDetails": {
          "isSupported": true,
          "percent": 80.0
        }
      },
      ...
    }
}

Global entities

migrations/public/v1/jobs/{jobId}/tasks/{taskId}/status?level=migrate&expandChildren=true

1
2
{
    "children": {
      "globalEntities": {
        "status": "IN_PROGRESS",
        "message": "Exporting global entities | Starting upload of global entities | Uploading global entities | Starting import of global entities | Importing global entities | Global entities migration completed",
        "progressDetails": {
          "isSupported": true,
          "percent": 20.0
        }
      },
      ...
    }
}

Rate this page: