@Benchmark Object benchmark,
@BenchmarkMethod Method method,
@WorkerOptions Map<String, String> workerOptions) {
super(benchmark, method);
this.options = new Options(workerOptions);
ArbitraryMeasurement annotation = method.getAnnotation(ArbitraryMeasurement.class);
this.unit = annotation.units();
this.description = annotation.description();
}