This plugin adds a visual representation of Jenkins pipelines, showing each stage of a run in a clear and easy-to-follow graph format. It’s designed to make pipeline progress and structure easier to understand at a glance.
- Visualize pipelines as an interactive, nested graph
- Navigate pipeline stages in a clear, collapsible list view
- View logs in real time without leaving the interface
- Toggle between graph and stage views; move and resize panes to suit your workflow
- Quickly access details of each step and its results
- Hide specific steps from view using the
hideFromViewPipeline DSL step - Designed for better readability and faster troubleshooting
- Install the Pipeline Graph View plugin
- Go to some pipeline build page (not the job page)
- Click Pipeline Overview
Hidden steps are not displayed by default in the Pipeline Overview, but can be toggled visible using the filter controls.
Basic pipeline:
Semi-complex pipeline:
See a live demonstration from a Jenkins Contributor Summit:
You can mark specific pipeline steps as hidden from the view by wrapping them with the hideFromView step:
pipeline {
agent any
stages {
stage('Build') {
steps {
echo "This step is visible"
hideFromView {
echo "This step is hidden by default"
}
echo "This step is also visible"
}
}
}
}
The REST API documentation can be found here.
Refer to our contribution guidelines.
Licensed under MIT, see LICENSE.



