https://github.com/davidbrochart/jupyter-resource-usage-proxy
A Jupyter Server Extension Proxying Resource Usage
https://github.com/davidbrochart/jupyter-resource-usage-proxy
Last synced: 11 months ago
JSON representation
A Jupyter Server Extension Proxying Resource Usage
- Host: GitHub
- URL: https://github.com/davidbrochart/jupyter-resource-usage-proxy
- Owner: davidbrochart
- License: mit
- Created: 2023-03-30T12:21:20.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-31T09:08:59.000Z (over 1 year ago)
- Last Synced: 2025-02-01T18:27:59.764Z (about 1 year ago)
- Language: Python
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Jupyter Resource Usage Proxy
In one terminal/environment:
```console
pip install jupyverse-api
pip install fps-resource-usage
pip install fps-noauth
# launch a terminal server at http://127.0.0.1:8000
jupyverse --port=8000
```
In another terminal/environment:
```console
pip install jupyter_resource_usage
pip install jupyter_resource_usage_proxy
pip install jupyterlab
# launch JupyterLab at http://127.0.0.1:8888, deactivate the resource usage server extension, and proxy resource usage at http://127.0.0.1:8000
jupyter lab --port=8888 --ServerApp.jpserver_extensions="jupyter_resource_usage=False" --ResourceUsageProxyExtensionApp.proxy_url='http://127.0.0.1:8000'
```
Resource usage should now be served from http://127.0.0.1:8000.