exceptions on chalice
Project description
Sentry-chalice
Sentry-Chalice allow the integration of Chalice on sentry.
You can use sentry-chalice integration like this:
import sentry_sdk
from chalice import Chalice
from sentry_chalice import ChaliceIntegration
sentry_sdk.init(
dsn="https://<key>@<organization>.ingest.sentry.io/<project>",
integrations=[ChaliceIntegration()]
)
app = Chalice(app_name='appname')
You can create a route that triggers an error for validate your Sentry installation, like this:
@app.route('/boom')
def boom():
raise Exception('boom goes the dynamite!')
when you enter the route will throw an error that will be captured by Sentry.
Behavior
- Request data is attached to all events: HTTP method, URL, headers, form data, JSON payloads. Sentry excludes raw bodies and multipart file uploads. Sentry also excludes personally identifiable information (such as user ids, usernames, cookies, authorization headers, IP addresses) unless you set send_default_pii to True.
Each request has a separate scope. Changes to the scope within a view, for example setting a tag, will only apply to events sent as part of the request being handled.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
sentry_chalice-0.1.0.tar.gz
(5.6 kB
view details)
Built Distribution
File details
Details for the file sentry_chalice-0.1.0.tar.gz
.
File metadata
- Download URL: sentry_chalice-0.1.0.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9a5f987e86c2e40943f486c5384913019057815d31669acfe88df164bfacca4 |
|
MD5 | bc6e6ca7f7767dec0e7b57fbbcdab129 |
|
BLAKE2b-256 | acded07eed2bfc87a9cf98fb5e1afd2ded33fa89ab62fefeb82d8087566808d4 |
File details
Details for the file sentry_chalice-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: sentry_chalice-0.1.0-py3-none-any.whl
- Upload date:
- Size: 7.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 317967e7d822414085ab757e8c59f58f5f4f6e026bac40bcc74e777c0926a7a8 |
|
MD5 | cfaf3b3f7edb627dc320c7d3aec24352 |
|
BLAKE2b-256 | 83d64434a05a0d53fb155b41abab3d5c3c3868b0d9e12242a8fee24ee1f4b1a6 |