Skip to content

Commit

Permalink
Specify average in timeseries titles (#5974)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrocklin authored Mar 22, 2022
1 parent fe862ad commit 4866615
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions distributed/dashboard/components/scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -914,7 +914,7 @@ def __init__(self, scheduler, **kwargs):
tools = "reset, xpan, xwheel_zoom"

self.bandwidth = figure(
title="Workers Network Bandwidth",
title="Worker Network Bandwidth (average)",
x_axis_type="datetime",
tools=tools,
x_range=x_range,
Expand Down Expand Up @@ -946,7 +946,7 @@ def __init__(self, scheduler, **kwargs):
self.bandwidth.xgrid.visible = False

self.cpu = figure(
title="Workers CPU",
title="Worker CPU Utilization (average)",
x_axis_type="datetime",
tools=tools,
x_range=x_range,
Expand All @@ -966,7 +966,7 @@ def __init__(self, scheduler, **kwargs):
self.cpu.xgrid.visible = False

self.memory = figure(
title="Workers Memory",
title="Worker Memory Use (average)",
x_axis_type="datetime",
tools=tools,
x_range=x_range,
Expand All @@ -987,7 +987,7 @@ def __init__(self, scheduler, **kwargs):
self.memory.xgrid.visible = False

self.disk = figure(
title="Workers Disk",
title="Worker Disk Bandwidth (average)",
x_axis_type="datetime",
tools=tools,
x_range=x_range,
Expand Down

0 comments on commit 4866615

Please sign in to comment.