From 40ee51846cb59d04c194642c3770e18cf5f07e87 Mon Sep 17 00:00:00 2001 From: Ben Adams Date: Thu, 2 Mar 2017 14:56:05 +0000 Subject: [PATCH] Add allocations column (#1422) --- .../configs/CoreConfig.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/Microsoft.AspNetCore.Server.Kestrel.Performance/configs/CoreConfig.cs b/test/Microsoft.AspNetCore.Server.Kestrel.Performance/configs/CoreConfig.cs index 1621a1ddc2..01f4c02318 100644 --- a/test/Microsoft.AspNetCore.Server.Kestrel.Performance/configs/CoreConfig.cs +++ b/test/Microsoft.AspNetCore.Server.Kestrel.Performance/configs/CoreConfig.cs @@ -2,6 +2,7 @@ // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using BenchmarkDotNet.Configs; +using BenchmarkDotNet.Diagnosers; using BenchmarkDotNet.Engines; using BenchmarkDotNet.Jobs; using BenchmarkDotNet.Validators; @@ -13,6 +14,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Performance public CoreConfig() { Add(JitOptimizationsValidator.FailOnError); + Add(MemoryDiagnoser.Default); Add(new RpsColumn()); Add(Job.Default