Sentry integration for jupyter lab
Project description
jupyterlab_sentry
Sentry integration for jupyter lab.
Highly customized and crowded jupyter lab environment might face odd behaviors and errors. Error reporting and analysis tools can help us identify and fix errors. Sentry is one of those tools.
Requirements
- JupyterLab >= 3.0
Install
To install the extension, execute:
pip install jupyterlab_sentry
Sentry DSN
We are using jupyter lab extension settings for Sentry DSN.
After installation, you can find that jupyterlab-sentry
settings are available in advanced settings.
However, this setting is only applied to the user who set this value manually.
In most cases, you might want all your users to be reported by sentry.
We are using overrides.json. This file can be installed to your node or docker image.
/<project>/Dockerfile
# Choose version whatever you want
FROM jupyter/base-notebook:lab-3.2.9 as base
COPY overrides.json ${CONDA_DIR}/share/jupyter/lab/settings/overrides.json
# ...
/<project>/overrides.json
{
"jupyterlab-sentry:plugin": {
"dsn": "https://yourdsn@asdf.ingest.sentry.io/1234"
}
}
Uninstall
To remove the extension, execute:
pip uninstall jupyterlab_sentry
Contributing
Development install
Note: You will need NodeJS to build the extension package.
The jlpm
command is JupyterLab's pinned version of
yarn that is installed with JupyterLab. You may use
yarn
or npm
in lieu of jlpm
below.
# Clone the repo to your local environment
# Change directory to the jupyterlab_sentry directory
# Install package in development mode
pip install -e .
# Link your development version of the extension with JupyterLab
jupyter labextension develop . --overwrite
# Rebuild extension Typescript source after making changes
jlpm build
You can watch the source directory and run JupyterLab at the same time in different terminals to watch for changes in the extension's source and automatically rebuild the extension.
# Watch the source directory in one terminal, automatically rebuilding when needed
jlpm watch
# Run JupyterLab in another terminal
jupyter lab
With the watch command running, every saved change will immediately be built locally and available in your running JupyterLab. Refresh JupyterLab to load the change in your browser (you may need to wait several seconds for the extension to be rebuilt).
By default, the jlpm build
command generates the source maps for this extension to make it easier to debug using the browser dev tools. To also generate source maps for the JupyterLab core extensions, you can run the following command:
jupyter lab build --minimize=False
Development uninstall
pip uninstall jupyterlab_sentry
In development mode, you will also need to remove the symlink created by jupyter labextension develop
command. To find its location, you can run jupyter labextension list
to figure out where the labextensions
folder is located. Then you can remove the symlink named jupyterlab-sentry
within that folder.
Packaging the extension
See RELEASE
Our problems and goals
In theory, Sentry agent should be initialized as soon as possible. But, jupyter lab extensions are loaded much later.
Sentry report would be improved if we feed them additional information like user id.
Jupyter lab setting is not bad for deliverying DSN value, but I'm a little worried that users might change their DSN value. It is also a bit complicated to set up overrides.json
.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for jupyterlab_sentry-0.3.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b4b63ce773b2c15e875cc80ed8762bc4a01fb9f128b47447666e0a297f273243 |
|
MD5 | 2af9c1e93920c96d98dc07f053a741bb |
|
BLAKE2b-256 | 96050aa8e8fae3f1a705c53c76b4462e91e925552018365071000271bf2d19c1 |