2020年8月15日土曜日

JupyterLabにCPU使用率・メモリ使用量をモニタリングできるJupyterLab System Monitorをインストールする

JupyterLab System Monitorで、CPU使用率・メモリ使用量をヘッダー部分に表示する事ができます。

〇JupyterLab System Monitorの画面
グラフをクリックすると時系列グラフ表示と現在値の表示を切り替えることができます。

インストール手順

以下のコマンドを実行します。
1. nodejsのインストール
sudo apt-get -y install curl

curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -

sudo apt-get install -y nodejs

2. JupyterLab System Monitorのインストール
pipenv shell

pipenv install nbresuse

jupyter labextension install jupyterlab-topbar-extension jupyterlab-system-monitor

3. 初期設定
cat << EOF >> ~/.jupyter/jupyter_notebook_config.py
# JupyterLab System Monitor
c.NotebookApp.ResourceUseDisplay.mem_limit = 4294967296
c.NotebookApp.ResourceUseDisplay.track_cpu_percent = True
c.NotebookApp.ResourceUseDisplay.cpu_limit = 4
EOF

関連情報

・JupyterLab System Monitorのgithubリポジトリ
https://github.com/jtpio/jupyterlab-system-monitor

Ubuntu 20.04にJupyter Labをインストールする(pipenv版)

Raspberry Pi(Raspbian Buster)にJupyter Labをインストールする

0 件のコメント:

コメントを投稿