Skip to content

Commit 3f8963b

Browse files
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.
1 parent fe171a7 commit 3f8963b

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

nix/tools/loadtest.nix

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,8 +277,7 @@ let
277277
278278
pd.read_json(sys.stdin) \
279279
.set_index('param') \
280-
.drop(['branch', 'earliest', 'end', 'latest']) \
281-
.fillna("") \
280+
.loc['rate'] \
282281
.convert_dtypes() \
283282
.to_markdown(sys.stdout, floatfmt='.0f')
284283
'';

0 commit comments

Comments
 (0)