We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e07d12 commit 9bd0985Copy full SHA for 9bd0985
1 file changed
tests/infra/basicperf.py
@@ -693,7 +693,12 @@ def color_legend(names, *color_groups):
693
)
694
all_seconds.update(ce["second"].to_list())
695
696
- seconds = sorted(all_seconds)
+ # Use a contiguous range so that idle seconds appear as
697
+ # empty bars rather than being skipped entirely.
698
+ if all_seconds:
699
+ seconds = list(range(min(all_seconds), max(all_seconds) + 1))
700
+ else:
701
+ seconds = []
702
703
# With many clients, bin them into groups so each group gets
704
# enough bar width to be visible. Target ~chart_width/4 groups max.
0 commit comments