public void testSyslogFormat() throws IOException, EventExtractException,
InterruptedException {
Benchmark b = new Benchmark("Syslog format + nullsink");
b.mark("begin");
TextFileSource txt = new TextFileSource(SYSLOG_LOG); // 23244 entires
txt.open();
MemorySinkSource mem = new MemorySinkSource();
mem.open();
EventUtil.dumpAll(txt, mem);
txt.close();