use of org.graylog2.shared.journal.NoopJournal in project graylog2-server by Graylog2.
the class BlockingBatchedESOutputTest method setUp.
@Before
public void setUp() throws Exception {
this.metricRegistry = new MetricRegistry();
this.journal = new NoopJournal();
this.config = new Configuration() {
@Override
public int getOutputBatchSize() {
return 3;
}
};
}
Aggregations