Skip to main content
Version: 2026-06-04

Activity details

The activity details screen is a critical component of OpsChain, providing in-depth information about specific changes and workflow runs. This guide will help you navigate these details screens, understand the execution progress of changes and workflows, and manage them effectively.

Accessing the activity details screen

To view the details of a particular change or workflow run:

  1. Access the list of activity by selecting the activity option in the left sidebar.
  2. Click on a specific activity row in the table to open the details screen.

Understanding the activity details screen

Activity details screen

The activity details screen is divided into several sections, providing a comprehensive overview of the activity's lifecycle.

Header information

Activity header details screen

From left to right:

InformationDescription
Status iconAn icon representing the activity's status.
Action nameThe name of the action being executed.
Started byThe name of the user that initiated the action.
StatusThe current status of the activity.
Blocked by queueIf the activity is blocked by other items in the queue, a dropdown will be shown with the name of the activities that are blocking it.
Timing informationDisplays the relevant timing information for the activity, including the creation date and all the status transitions such as when the activity started running, when it has finished, etc.
Git referenceShows the Git reference associated with the activity, including the remote, revision, and the SHA it resolved to. If the activity is for a templated asset, it will show the template version name used in the change.

Change activity tabs

For changes, available tabs include:

  • the change's step tree
  • the change's logs
  • the change's properties
  • the change's settings
  • the change's MintModel, if any was used
  • the change's metadata, if any was added

Step tree

Step tree screen

The step tree tab visualises the following:

  • Sequence and hierarchy of steps involved in the change or workflow run
  • Each step is represented as a node within the tree, with the execution progress being indicated via the node's colour
  • Real time execution progress is shown next to each step, indicating the time each step took or has been taking to execute.

The arrangement and execution flow of steps are visually depicted from top to bottom and left to right. OpsChain initiates with the foremost step, navigating through to any sub-steps (children) in a left-to-right manner before moving to subsequent steps positioned below (top-down).

Step execution strategy

The step tree represents all the steps of the change or workflow run and they are organised based on the execution strategy that was defined for the action. Steps can be executed sequentially or in parallel.

Execution modeDescription
SequentialSteps follow a linear progression, where each step commences only after the preceding step has concluded.
ParallelSteps occur concurrently, without needing the step to be completed before another begins.

When a step's children run in sequential mode, its children will be connected by a single arrow line, top to bottom. When a step's children run in parallel mode, its children will be connected by parallel arrow lines.

note

The execution strategy for an action is fixed and determined by the author of the action. Users cannot alter this strategy from sequential to parallel or vice versa. This design choice ensures consistency and reliability in the execution of changes and workflow runs.

info

By default, all steps of a change run inside the same isolated container. You can configure a change to run each step in its own isolated container by enabling the pod_per_change_step setting on the project, environment or asset.

Behaviour when a child step fails

The execution strategy also determines how OpsChain handles failures among sibling steps:

  • Sequential: OpsChain terminates the change at the completion of the failed child step and any remaining sibling steps will not run.
  • Parallel: OpsChain allows all siblings of the failed child step to complete and then terminates the change.

The change status will transition to error when OpsChain terminates the change. See behaviour when a child step fails for the underlying concept.

Step lifecycle

Steps transition between status as they execute. The table below lists the statuses shown in the GUI; see the change and step lifecycle reference for the underlying transitions.

StatusDescription
InitializingWhen a change or workflow run is created, its state is set to initializing whilst the Git commit is being validated.
PendingA change or workflow run remains in the pending status while waiting for any existing activity in the same environment to finish. A step remains pending until its prerequisites are complete.
AbortedIf a step fails or is cancelled, any steps in the same change or workflow run that are still pending will be set to the aborted state.
QueuedWhen a step starts executing, it enters the queued state. Steps stay queued while waiting for an OpsChain worker to start executing them (e.g. if all workers are already busy).
RunningWhilst a step is actively executing, it is in the running state.
ErrorIf the step fails, it transitions to the error state.
SuccessIf the step succeeds, it transitions to the success state.
RemovedIf the step is removed on another action's execution, it is marked as removed.

When a change or workflow includes wait steps or approval steps, the following additional statuses are available:

StatusDescription
Waiting for manual continuationThe step requires a user to manually continue the step, using the continue option in the step's "triple dot" menu.
Waiting for approvalThe step requires approval from a user or member of the appropriate LDAP group to continue the change/workflow. The step's "triple dot" menu provides approve and reject options for the approver.
info

By default, OpsChain allows multiple changes to execute for a given project, environment or asset, but only one with the same action name. This reduces the risk of concurrent changes interfering with each other's properties updates. If your actions can safely run concurrently, you can relax this restriction via the allow parallel runs of the same change setting.

Filtering steps by status

On the left side of the step tree, you can filter the steps by their respective statuses. Use the forward and backward buttons to navigate through the steps that match the selected status.

On the right side of the step tree, you will see the following buttons:

  • Search: Toggle the search bar to search for a specific step in the step tree. You can use the forward and backward buttons to navigate through the search results.
  • Fit to width: Use the fit to width button to adjust the step tree to the width of the screen.
  • Fit entire tree: Use the fit entire tree button to adjust the step tree to fit entirely within the screen.
  • Zoom in/zoom out: Use the plus (+) and minus (-) buttons to zoom in or out the step tree for a clearer view.

Change logs

Change logs screen

The change logs tab contains detailed logs related to a change. Access this tab to review comprehensive log information that can help in troubleshooting and understanding the change's impact.

You can toggle the System logs option to show or hide OpsChain-specific logs, such as image building, etc.

Step logs

Step log screen

To view the log for a specific step, click on the icon to the right of the step name. This will then display the step logs for that particular step and its children. You can disable children logs by toggling the Include child logs checkbox. You can also toggle the Status logs option to show or hide the pod status logs for that step.

Metadata

The metadata tab displays the metadata that the change ran with.

Properties

The properties tab displays all properties that the change ran with, converged from its parent project, environment, asset and Git repository. This tab also allows you to compare the properties between all its stages during the change's lifecycle, allowing you to see how each step modified the properties.

Show sources button

When looking at the properties, you can click the "Show sources" button to see the source of each property.

Read more about properties in the properties concept page.

Settings

The settings tab displays the settings overrides that the change ran with, converged from its parent project, environment and asset. You can read more about settings in the settings concept page.

MintModel

The MintModel tab displays the MintModel that was used to run the change. You can read more about MintModel changes in the MintModel asset templates guide.

Managing changes

Depending on the status of the change, you will see either an approve, reject, cancel, or retry button.

ButtonDescription
Approve/rejectVisible when a change requires human approval before it runs.
CancelVisible when a change is currently running. Clicking this will halt the execution of the change.
RetryShown if a change has failed, allowing you to attempt to re-execute the change.
note

If a change is cancelled, all finalised steps (i.e. in the success or error state) remain in their existing state, and all pending, queued, or running steps are transitioned to the aborted state. There is no rollback of any kind; steps that have not yet started will not start, and steps that are in progress are stopped immediately.

Retrying a change

When you retry a change, OpsChain duplicates the existing change as a new change and starts it from where the previous attempt ended. The retry uses the resolved Git SHA stored with the original change, and the logs from the original change remain on the original change's details page.

See retrying changes for the full set of caveats - including which steps are rerun and when you should instead create a new change.

Repeating a change

When you repeat a change, OpsChain starts a fresh change using the same properties, settings and Git revision. When repeating a change for an asset, the new change will use the asset's current template version.

Workflow run details

For a workflow run, the step tree is shown in the same style as the change step tree.

Workflow run tree