Hi there, I would like to be able to debug my pipeline configuration. I apply a series of filters, and at the end I output to a json file. It works as it should, and a skeleton of the code would be this:
filter {
whatever1
}
filter {
whatever2
}
filter {
whatever3
}
output {
file { path=> output_file}
}
What Id like to do is, I would like to be able to output in between filters to different files, so that I can see what the event looks like after each filter. I would like to see the gradual effects of my filters so I can debug them separately. Something like:
filter {
whatever1
}
output {
file { path=> output_file_1}
}
filter {
whatever2
}
output {
file { path=> output_file_2}
}
filter {
whatever3
}
output {
file { path=> output_file_3}
}
But when I do this, all the outputs are executed after the filters have been applied. Is there a was to do this, or should I just gradually test the output of each filter, one by one?