Bottle
Learn about using Sentry with Bottle.
The Bottle integration adds support for the Bottle web framework. Currently it works well with the stable version of Bottle (0.12). However the integration with the development version (0.13) doesn't work properly.
Install sentry-sdk
from PyPI with the bottle
extra:
pip install --upgrade 'sentry-sdk[bottle]'
If you have the bottle
package in your dependencies, the Bottle integration will be enabled automatically when you initialize the Sentry SDK.
import sentry_sdk
sentry_sdk.init(
dsn="https://examplePublicKey@o0.ingest.sentry.io/0",
# Set traces_sample_rate to 1.0 to capture 100%
# of transactions for tracing.
traces_sample_rate=1.0,
# Set profiles_sample_rate to 1.0 to profile 100%
# of sampled transactions.
# We recommend adjusting this value in production.
profiles_sample_rate=1.0,
)
from bottle import Bottle, run
sentry_sdk.init(...) # same as above
app = Bottle()
@app.route('/')
def hello():
1 / 0
return "Hello World!"
run(app, host='localhost', port=8000)
When you point your browser to http://localhost:8000/ a transaction in the Performance section of sentry.io will be created. Additionally, an error event will be sent to sentry.io and will be connected to the transaction.
It takes a couple of moments for the data to appear in sentry.io.
uWSGI and Sentry SDK
If you're using uWSGI, note that it doesn't support threads by default. This might lead to unexpected behavior when using the Sentry SDK, from features not working properly to uWSGI workers crashing.
To enable threading support in uWSGI, make sure you have both --enable-threads
and --py-call-uwsgi-fork-hooks
on.
The Sentry Python SDK will install the Bottle integration for all of your apps. The integration hooks into base Bottle class.
All exceptions leading to an Internal Server Error are reported.
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
toTrue
.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.
If you add BottleIntegration
explicitly to your sentry_sdk.init()
call you can set options for BottleIntegration
to change its behavior:
import sentry_sdk
from sentry_sdk.integrations.bottle import BottleIntegration
sentry_sdk.init(
# same as above
integrations=[
BottleIntegration(
transaction_style="endpoint",
failed_request_status_codes={*range(500, 600)},
),
],
)
Each of the following options are supported as keyword arguments to BottleIntegration()
.
The transaction_style
option specifies how the transaction name is generated. You can set the option to "endpoint"
(the default) or "url"
.
For example, given the following route:
@app.route("/myurl/<foo>")
def myendpoint():
return "ok"
- If you set
transaction_style="endpoint"
, the transaction name will be"myendpoint"
, since that is the route handler function's name. - If you set
transaction_style="url"
, the transaction name will be"/myurl/<foo>"
, since that is the URL path.
A set
of integers that will determine when an HTTPResponse
, which is raised or returned by the request handler, should be reported to Sentry. The HTTPResponse
is reported to Sentry if its status code is contained in the failed_request_status_codes
set.
Examples of valid values for failed_request_status_codes
:
{500}
will only reportHTTPResponse
with status 500.{400, *range(500, 600)}
will reportHTTPResponse
with status 400 as well as those in the 5xx range.set()
(the empty set) will not report anyHTTPResponse
to Sentry.
The default is {*range(500, 600)}
, meaning that any HTTPResponse
with a status in the 5xx range is reported to Sentry.
Regardless of how failed_request_status_codes
is configured, any non-HTTPResponse
exceptions raised by the handler are reported to Sentry. For example, if your request handler raises an unhandled AttributeError
, the AttributeError
gets reported to Sentry, even if you have set failed_request_status_codes=set()
.
- Bottle: 0.12.13+
- Python: 3.6+
The versions above apply for Sentry Python SDK version 2.0+
, which drops support for some legacy Python and framework versions. If you're looking to use Sentry with older Python or framework versions, consider using an SDK version from the 1.x
major line of releases.
Our documentation is open source and available on GitHub. Your contributions are welcome, whether fixing a typo (drat!) or suggesting an update ("yeah, this would be better").