https://github.com/jenkinsci/pipeline-graph-view-plugin
Pipeline Graph View adds a visual representation of Jenkins pipelines, showing each stage of a run in a clear and easy-to-follow graph format.
https://github.com/jenkinsci/pipeline-graph-view-plugin
hacktoberfest jenkins-pipeline jenkins-ui ui
Last synced: 3 months ago
JSON representation
Pipeline Graph View adds a visual representation of Jenkins pipelines, showing each stage of a run in a clear and easy-to-follow graph format.
- Host: GitHub
- URL: https://github.com/jenkinsci/pipeline-graph-view-plugin
- Owner: jenkinsci
- License: other
- Created: 2021-02-25T19:32:57.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2026-04-17T12:22:51.000Z (3 months ago)
- Last Synced: 2026-04-17T14:28:56.460Z (3 months ago)
- Topics: hacktoberfest, jenkins-pipeline, jenkins-ui, ui
- Language: Java
- Homepage: https://plugins.jenkins.io/pipeline-graph-view/
- Size: 5.58 MB
- Stars: 147
- Watchers: 8
- Forks: 71
- Open Issues: 117
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Pipeline Graph View Plugin
[](https://ci.jenkins.io/job/Plugins/job/pipeline-graph-view-plugin/job/main/)
[](https://gitter.im/jenkinsci/ux-sig?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
[](https://plugins.jenkins.io/pipeline-graph-view)
[](https://plugins.jenkins.io/pipeline-graph-view)

## Introduction
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.
## Features
- 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 `hideFromView` Pipeline DSL step
- Designed for better readability and faster troubleshooting
## Getting started
1. Install the [Pipeline Graph View](https://plugins.jenkins.io/pipeline-graph-view/) plugin
2. Go to some pipeline build page (not the job page)
3. Click _Pipeline Overview_
Hidden steps are not displayed by default in the Pipeline Overview, but can be toggled visible using the filter controls.
## Screenshots
Basic pipeline:

Semi-complex pipeline:

## Video
See a live demonstration from a Jenkins Contributor Summit:
[](https://www.youtube.com/watch?v=MBI3MBY2eJ8&t=3295 "Pipeline Graph View plugin")
## Pipeline DSL Extensions
### Hiding Steps from View
You can mark specific pipeline steps as hidden from the view by wrapping them with the `hideFromView` step:
```groovy
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"
}
}
}
}
```
## REST API
The REST API documentation can be found [here](https://editor-next.swagger.io/?url=https://raw.githubusercontent.com/jenkinsci/pipeline-graph-view-plugin/refs/heads/main/openapi.yaml).
## Contributing
Refer to our [contribution guidelines](./CONTRIBUTING.md).
## LICENSE
Licensed under MIT, see [LICENSE](LICENSE.md).