pipe = new Each( pipe, new Fields( "line" ), new RegexParser( new Fields( "ip", "time", "method", "event", "status", "size" ), regex, new int[]{
1, 2, 3, 4, 5, 6} ) );
pipe = new Each( pipe, AssertionLevel.STRICT, new AssertNotNull() );
pipe = new Each( pipe, DebugLevel.DEFAULT, new Debug() );
pipe = new Each( pipe, DebugLevel.VERBOSE, new Debug() );
pipe = new Each( pipe, new Fields( "method" ), new RegexFilter( "^POST" ) );
pipe = new Each( pipe, new Fields( "method" ), AssertionLevel.STRICT, new AssertMatches( "^POST" ) );