Post-Processor Group
A post-processor group is used to create a single post-processor out of multiple simpler post-processors. The group consists of zero or more child post-processors which will each be applied in order when the group is applied.
Attributes
| Attribute |
Description |
Required? |
Default |
| name |
The name of this post-processor. |
Yes |
|
Child Elements
A post-processor group can contain any number of child post-processors. Post-processors are defined by tags with the ".pp" suffix, and are listed on the pulse Files page.
Examples
A post-processor that searches for errors from make and from a compiler:
<post-processor name="build.pp">
<regex.pp name="compiler.pp">
<pattern category="error" expression="\\..*:[0-9]+: error"/>
</regex.pp>
<make.pp name="make.pp"/>
</post-processor>