Troubleshoot intermediate output

Is there anyway to view the output of intermediate events. Say if i have filter block in the followng way ,
filter

{

grok {

match => {

  "message" => "%{COMBINEDAPACHELOG}"

         }

   }

mutate {

convert => { "bytes" => "integer" }

     }

matches "timestamp" with the format "dd/MMM/YYYY:HH:mm:ss Z" and formats accordingly

date {

match => [ "timestamp", "dd/MMM/YYYY:HH:mm:ss Z" ]

locale => en

}            

}

How to view the intermediate output generated by each filter block ? one way , i am using is to use outblock for each filter and adding other filters incrementally one by one ..

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.