How to check the progress of a running deployment if the window is closed

When performing a deployment using CMJ (Configuration Manager for Jira) and accidentally closing the deployment window, you can still monitor the progress of your operation through alternative methods. This guide will walk you through alternative methods to check the status and progress of your deployment even after closing the window.

Method 1: Check CMJ's Audit Logging

Method 2: Retrieve Deployment Status Using Operation ID

  • If a deployment fails due to an ongoing operation, you'll typically see an error message indicating that another deployment is already in progress.

 

image-20240415-113647.png

 

http://host:port/context/rest/configuration-manager/1.0/deployments/{currentOperationID}

Replace {currentOperationID} with the operation ID obtained from the failed deployment message.

For example, you would use the following path to access the API on a locally run instance of Jira with a context path of /jira:

http://localhost:2990/jira/rest/configuration-manager/1.0/deployments/{currentOperationID}

Context Path

The example above specifies a context path of “/jira”. Keep in mind that the context path may be different or not present for your installation of Jira.

  • Make a GET request to the constructed URL using a tool like a web browser or cURL.

  • This API request will return a JSON response containing detailed information about the ongoing deployment, including its current status, progress messages, and completion percentage.

  • Upon successful retrieval, analyze the JSON output to understand the status of the deployment:

  • By default, the progress displayed in the JSON response will not automatically refresh. To see updated progress, manually refresh the page or resend the GET request to the same REST API endpoint.

  • Each time you refresh or requery the endpoint, you'll get the most recent progress update for the ongoing deployment.

By leveraging the operation ID and CMJ's REST API endpoint, combined with manual refreshing of the page, you can effectively monitor the progress and status of an ongoing deployment even after closing the deployment window prematurely.