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.
This commit is contained in:
Wolfgang Walther
2026-06-01 20:49:35 +00:00
parent 669fc9ede8
commit 5cdf2e0569
+1 -2
View File
@@ -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')
'';