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:
@@ -282,8 +282,7 @@ let
|
|||||||
|
|
||||||
pd.read_json(sys.stdin) \
|
pd.read_json(sys.stdin) \
|
||||||
.set_index('param') \
|
.set_index('param') \
|
||||||
.drop(['branch', 'earliest', 'end', 'latest']) \
|
.loc['rate'] \
|
||||||
.fillna("") \
|
|
||||||
.convert_dtypes() \
|
.convert_dtypes() \
|
||||||
.to_markdown(sys.stdout, floatfmt='.0f')
|
.to_markdown(sys.stdout, floatfmt='.0f')
|
||||||
'';
|
'';
|
||||||
|
|||||||
Reference in New Issue
Block a user