From 5cdf2e056906172ab58b1206cf41cc1431abff86 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Fri, 8 May 2026 20:48:25 +0200 Subject: [PATCH] nix(loadtest): remove noise from report Ultimately, we only look at the `rate` column, so we can just as well remove all other columns. This makes the next step, when we split results by request type, much less noisy. --- nix/tools/loadtest.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nix/tools/loadtest.nix b/nix/tools/loadtest.nix index 034fb6328..9831efe4c 100644 --- a/nix/tools/loadtest.nix +++ b/nix/tools/loadtest.nix @@ -282,8 +282,7 @@ let pd.read_json(sys.stdin) \ .set_index('param') \ - .drop(['branch', 'earliest', 'end', 'latest']) \ - .fillna("") \ + .loc['rate'] \ .convert_dtypes() \ .to_markdown(sys.stdout, floatfmt='.0f') '';