You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do you know if there is a way to set the "Enable resource usage indicators" from the Resource Usage Indicator settings to True (see attached image) from the jupyter_server_config.py file?
So I have a configuration file called jupyter_server_config.py with the following content:
import sys
import os
from jupyter_core.paths import jupyter_data_dir
import subprocess
import errno
import stat
c = get_config()
c.ServerApp.open_browser = False
c.ResourceUseDisplay.track_cpu_percent = True
c.ResourceUseDisplay.track_disk_usage = True
# Add bash as a jupyter terminal shell
c.ServerApp.terminado_settings = {'shell_command': ['/bin/bash']}
Do you know if there is a way to configure the "Enable resource usage indicators" setting to True from the jupyter_server_config.py file?