@@ -4711,30 +4711,25 @@ def status_doc(scheduler, extra, doc):
4711
4711
processing_root = processing .root
4712
4712
4713
4713
current_load = CurrentLoad (scheduler , sizing_mode = "stretch_both" )
4714
- occupancy = Occupancy (scheduler , sizing_mode = "stretch_both" )
4715
4714
workers_transfer_bytes = WorkersTransferBytes (scheduler , sizing_mode = "stretch_both" )
4716
4715
4717
4716
cpu_root = current_load .cpu_figure
4718
- occupancy_root = occupancy .root
4719
4717
4720
4718
workers_memory .update ()
4721
4719
workers_transfer_bytes .update ()
4722
4720
processing .update ()
4723
4721
current_load .update ()
4724
- occupancy .update ()
4725
4722
4726
4723
add_periodic_callback (doc , workers_memory , 100 )
4727
4724
add_periodic_callback (doc , workers_transfer_bytes , 100 )
4728
4725
add_periodic_callback (doc , processing , 100 )
4729
4726
add_periodic_callback (doc , current_load , 100 )
4730
- add_periodic_callback (doc , occupancy , 100 )
4731
4727
4732
4728
doc .add_root (workers_memory .root )
4733
4729
4734
4730
tabs = [
4735
4731
TabPanel (child = processing_root , title = "Processing" ),
4736
4732
TabPanel (child = cpu_root , title = "CPU" ),
4737
- TabPanel (child = occupancy_root , title = "Occupancy" ),
4738
4733
TabPanel (child = workers_transfer_bytes .root , title = "Data Transfer" ),
4739
4734
]
4740
4735
0 commit comments