Installation
🐍 Don’t forget to install the AppSignal for Python package in your application first.
opentelemetry-instrumentation-flask package. To add it to your project, add the following line to your requirements.txt file:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
opentelemetry-instrumentation-flask package. To add it to your project, add the following line to your requirements.txt file:
<PythonDisableInstrumentations />
# requirements.txt
opentelemetry-instrumentation-flask
# app.py
import appsignal
appsignal.start()
from flask import Flask # noqa: E402
app = Flask(__name__)
# your app code
Was this page helpful?