Hi. I would like to request a feature for JMH. Can we introduce a way to specify human-readable names for benchmark methods? Something like: @Benchmark("Benchmark description here") public void benchmark() { } Or: @DisplayName("Benchmark description here") @Benchmark public void benchmark() { } Is this possible? Thanks!