Permalink
Switch branches/tags
Nothing to show
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time. Cannot retrieve contributors at this time
23 lines (21 sloc) 434 Bytes
input {
# Make a starting event, and 4 continuation events
generator {
type => "generated"
lines => [
"Testing1",
" Testing2",
" Testing3",
" Testing4",
" Testing5"
]
count => 1
codec => multiline {
pattern => " "
what => "previous"
}
}
}
output {
stdout { codec => rubydebug }
}