Skip to content

Commit

Permalink
Minor updates to shuffle dashboard (dask#8315)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrocklin authored Oct 31, 2023
1 parent 6f5109c commit 1083456
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion distributed/dashboard/components/scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -4573,7 +4573,7 @@ def shuffling_doc(scheduler, extra, doc):
shuffling = Shuffling(scheduler, width=400, height=400)
workers_memory = WorkersMemory(scheduler, width=400, height=400)
timeseries = SystemTimeseries(
scheduler, width=1600, height=200, follow_interval=3000
scheduler, width=1600, height=200, follow_interval=10000
)
event_loop = Contention(scheduler, width=200, height=400)

Expand Down
5 changes: 4 additions & 1 deletion distributed/dashboard/scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,10 @@ def template_variables(scheduler):
for x in applications
if "individual" in x
]
+ [{"url": "hardware", "name": "Hardware"}],
+ [
{"url": "hardware", "name": "Hardware"},
{"url": "shuffle", "name": "Shuffle"},
],
"jupyter": scheduler.jupyter,
}
template_variables["plots"] = sorted(
Expand Down

0 comments on commit 1083456

Please sign in to comment.