Permalink
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
Cannot retrieve contributors at this time.
Cannot retrieve contributors at this time
| input { | |
| # Make a starting event, and 3 continuation events -- A second event MUST start before the previous one is pushed though the pipe. | |
| generator { | |
| type => "generated" | |
| lines => [ | |
| "Testing1", | |
| " Testing2", | |
| " Testing3", | |
| " Testing4", | |
| "Testing5" | |
| ] | |
| count => 1 | |
| } | |
| } | |
| filter { | |
| multiline { | |
| pattern => " " | |
| what => "previous" | |
| } | |
| } | |
| output { | |
| stdout { codec => rubydebug } | |
| } |