Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jenkinsci/collapsing-console-sections-plugin
Jenkins collapsing-console-sections plugin
https://github.com/jenkinsci/collapsing-console-sections-plugin
adopt-this-plugin console console-visualization jenkins-plugin
Last synced: about 2 months ago
JSON representation
Jenkins collapsing-console-sections plugin
- Host: GitHub
- URL: https://github.com/jenkinsci/collapsing-console-sections-plugin
- Owner: jenkinsci
- Created: 2010-12-13T05:27:27.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2024-10-23T08:49:08.000Z (2 months ago)
- Last Synced: 2024-10-23T11:24:32.990Z (2 months ago)
- Topics: adopt-this-plugin, console, console-visualization, jenkins-plugin
- Language: Java
- Homepage: https://plugins.jenkins.io/collapsing-console-sections
- Size: 212 KB
- Stars: 12
- Watchers: 100
- Forks: 24
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Collapsing Console Sections Plugin for Jenkins
[![Jenkins Plugin](https://img.shields.io/jenkins/plugin/v/collapsing-console-sections.svg)](https://plugins.jenkins.io/collapsing-console-sections)
[![GitHub release](https://img.shields.io/github/release/jenkinsci/collapsing-console-sections-plugin.svg?label=changelog)](https://github.com/jenkinsci/collapsing-console-sections-plugin/releases/latest)
[![Jenkins Plugin Installs](https://img.shields.io/jenkins/plugin/i/collapsing-console-sections.svg?color=blue)](https://plugins.jenkins.io/collapsing-console-sections)This plugin allows the creation of sections in build consoles.
These sections can be individually collapsed to hide unimportant details.
A floating outline widget is available to navigate through all the sections of a build.## Basic Usage
Once this plugin is installed, you can define console sections from _Manage Jenkins > System Configuration > Configure System_.
Each console section is defined by a display name, a Java regular expression pattern that identifies the start of the section in log files, and a second regex that identifies the end of the section.
Starting with version `1.2` of this plugin, captured groups from the start-of-section regular expression can be referenced from the section display name.
Simply use {`1`}, {`2`}, and so forth in the place where you want to insert the value of the corresponding capture group of the regular expression.![](docs/images/collapsing-console-config.png)
In the below example an text following the occurance of the word `STARTING ` in the logs will be used as the Section Name.
![](docs/images/wilcard-reference-config.png)
After console sections have been defined, any section definition that matches contents of a visited build console URL will cause the that section to be annotated in the browser window.
Visibility of the section contents can be toggled with the _Hide/Show_ link.![](docs/images/console-sections.png)
A floating navigation widget is also inserted into the left-side navigation to aid movement between console sections.
![](docs/images/navigation.png)
## Programmatic Usage
If you want to provide a pre-canned set of sections for your organization's Jenkins installation,
you can create a plugin that depends on this plugin, and programmatically create section definitions.
Create instances of `SectionDefinition` to define sections, and then create a `ConsoleAnnotatorFactory` subclass that returns an instance of
`CollapsingSectionAnnotator`.
Here is a simple example that creates a section around Subversion checkouts.``` java
import hudson.Extension;
import hudson.console.ConsoleAnnotator;
import hudson.console.ConsoleAnnotatorFactory;
import hudson.model.Run;
import org.jvnet.hudson.plugins.collapsingconsolesections.CollapsingSectionAnnotator;
import org.jvnet.hudson.plugins.collapsingconsolesections.SectionDefinition;@Extension
public class SubversionAnnotatorFactory extends ConsoleAnnotatorFactory> {
@Override
public ConsoleAnnotator newInstance(Class context) {
SectionDefinition svnSection = new SectionDefinition( "Subversion Checkout",
"((Checking out)|(Updating) (http|https|svn\\+ssh).+",
"At revision \\d+.+" );
return new CollapsingSectionAnnotator( svnSection );
}
```The signature for `CollapsingSectionAnnotator`'s constructor is
``` java
public CollapsingSectionAnnotator( SectionDefinition... definitions );
```So you can use a single annotator that defines multiple console sections.
## Changelog
* For recent versions, see [GitHub releases](https://github.com/jenkinsci/collapsing-console-sections-plugin/releases)
* For versions `1.7.0` and before, see the [changelog archive](docs/OLD_CHANGELOG.md)