@@ -4711,30 +4711,25 @@ def status_doc(scheduler, extra, doc):
47114711 processing_root = processing .root
47124712
47134713 current_load = CurrentLoad (scheduler , sizing_mode = "stretch_both" )
4714- occupancy = Occupancy (scheduler , sizing_mode = "stretch_both" )
47154714 workers_transfer_bytes = WorkersTransferBytes (scheduler , sizing_mode = "stretch_both" )
47164715
47174716 cpu_root = current_load .cpu_figure
4718- occupancy_root = occupancy .root
47194717
47204718 workers_memory .update ()
47214719 workers_transfer_bytes .update ()
47224720 processing .update ()
47234721 current_load .update ()
4724- occupancy .update ()
47254722
47264723 add_periodic_callback (doc , workers_memory , 100 )
47274724 add_periodic_callback (doc , workers_transfer_bytes , 100 )
47284725 add_periodic_callback (doc , processing , 100 )
47294726 add_periodic_callback (doc , current_load , 100 )
4730- add_periodic_callback (doc , occupancy , 100 )
47314727
47324728 doc .add_root (workers_memory .root )
47334729
47344730 tabs = [
47354731 TabPanel (child = processing_root , title = "Processing" ),
47364732 TabPanel (child = cpu_root , title = "CPU" ),
4737- TabPanel (child = occupancy_root , title = "Occupancy" ),
47384733 TabPanel (child = workers_transfer_bytes .root , title = "Data Transfer" ),
47394734 ]
47404735
0 commit comments