summaryrefslogtreecommitdiff
path: root/core/src/test/java/eu/mulk/quarkus/googlecloud/jsonlogging/FormatterBenchmark.java
blob: 78291c1ea54c61bf42ceb90c01f8337626543028 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package eu.mulk.quarkus.googlecloud.jsonlogging;

import java.util.List;
import org.jboss.logmanager.ExtLogRecord;
import org.openjdk.jmh.annotations.*;
import org.openjdk.jmh.infra.Blackhole;

@Warmup(iterations = 5, time = 1)
@Measurement(iterations = 10, time = 1)
@Fork(value = 1)
@State(org.openjdk.jmh.annotations.Scope.Benchmark)
public class FormatterBenchmark {

  private ExtLogRecord simpleLogRecord;
  private ExtLogRecord structuredLogRecord;
  private ExtLogRecord massivelyStructuredLogRecord;
  private ExtLogRecord nestedLogRecord;
  private Formatter formatter;

  @Setup
  public void setup() {
    simpleLogRecord = FormatterTest.makeSimpleRecord();
    structuredLogRecord = FormatterTest.makeStructuredRecord();
    massivelyStructuredLogRecord = FormatterTest.makeMassivelyStructuredRecord();
    nestedLogRecord = FormatterTest.makeNestedRecord();
    formatter = new Formatter(List.of(), List.of());
  }

  @Benchmark
  public void simpleLogRecord(Blackhole blackhole) {
    blackhole.consume(formatter.format(simpleLogRecord));
  }

  @Benchmark
  public void structuredLogRecord(Blackhole blackhole) {
    blackhole.consume(formatter.format(structuredLogRecord));
  }

  @Benchmark
  public void massivelyStructuredLogRecord(Blackhole blackhole) {
    var f = formatter.format(massivelyStructuredLogRecord);
    blackhole.consume(f);
  }

  @Benchmark
  public void nestedLogRecord(Blackhole blackhole) {
    var f = formatter.format(nestedLogRecord);
    blackhole.consume(f);
  }
}