OpenTelemetry guide for Django and PostgreSQL/MySQL
In this article, you will learn how to use OpenTelemetry with Uptrace to monitor Django and PostgreSQL/MySQL performance.
What is tracing?
Distributed tracingopen in new window allows you to see how a request progresses through different services and systems, timings of each operation, any logs and errors as they occur.
In a distributed environment, tracing also helps you understand relationships and interactions between microservices. Distributed tracing gives an insight into how a particular microservice is performing and how that service affects other microservices.
Using tracing, you can break down requests into spansopen in new window. Span is an operation (unit of work) your app performs handling a request, for example, a database query or a network call.
Trace is a tree of spans that shows the path that a request makes through an app. Root span is the first span in a trace.
To learn more about tracing, see Distributed tracing using OpenTelemetryopen in new window.
What is OpenTelemetry?
OpenTelemetryopen in new window is an open source and vendor-neutral API for distributed tracingopen in new window (including logs and errors) and metricsopen in new window.
Otel specifies how to collect and export telemetry data in a vendor agnostic way. With OpenTelemetry, you can instrumentopen in new window your application once and then add or change vendors without changing the instrumentation, for example, many open source tracing toolsopen in new window already support OpenTelemetry.
OpenTelemetry is available for most programming languages and provides interoperability across different languages and environments.
Creating spans
You can create a span using OpenTelemetry Python APIopen in new window like this:
from opentelemetry import trace
tracer = trace.get_tracer("app_or_package_name", "1.0.0")
def some_func(**kwargs):
with tracer.start_as_current_span("some-func") as span:
// the code you are measuring
What is Uptrace?
Uptraceopen in new window is an open source DataDog alternativeopen in new window that helps developers pinpoint failures and find performance bottlenecks. Uptrace can process billions of spans on a single server and allows to monitor your software at 10x lower cost.
You can install Uptraceopen in new window by downloading a DEB/RPM package or a pre-compiled binary.
Example application
In this tutorial, you will be instrumenting a toy appopen in new window that uses Django and PostgreSQL database client. You can retrieve the source code with the following command:
git clone git@github.com:uptrace/uptrace.git
cd example/django
The app comes with some dependencies that you can install with:
pip install -r requirements.txt
Then you can run migrations to initialize the database:
./manage.py migrate
Configuring OpenTelemetry
Uptrace provides OpenTelemetry Pythonopen in new window distro that configures OpenTelemetry SDK for you. To install the distro:
pip install uptrace
Then you need to initialize OpenTelemetry whenever the app is started, for example, in manage.py
:
# manage.py
import uptrace
def main():
uptrace.configure_opentelemetry(
# Copy DSN here or use UPTRACE_DSN env var.
# dsn="",
service_name="myservice",
service_version="v1.0.0",
)
# other code
See documentationopen in new window for details.
Instrumenting Django
To instrument Django, you need a correspoding OpenTelemetry Django instrumentationopen in new window:
pip install opentelemetry-instrumentation-django
Django instrumentation uses DJANGO_SETTINGS_MODULE
env variable to find settings file. Django defines that variable in manage.py
file so you should instrument Django app from that file:
# manage.py
from opentelemetry.instrumentation.django import DjangoInstrumentor
def main():
# DjangoInstrumentor uses DJANGO_SETTINGS_MODULE to instrument the project.
# Make sure the var is available before you call the DjangoInstrumentor.
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "mysite.settings")
DjangoInstrumentor().instrument()
Running the example
You can start Uptrace with a single command using Docker exampleopen in new window:
docker-compose up -d
And then start the appopen in new window passing Uptrace DSN as an env variable:
export UPTRACE_DSN=http://project2_secret_token@localhost:14317/2
./manage.py runserver
The app should be serving requests on http://localhost:8000
and should render a link to Uptrace UI. After opening the link, you should see this:
Instrumenting PostgreSQL/MySQL
If you want to use PostgreSQL/MySQL Django engine instead of SQLite, see OpenTelemetry Djangoopen in new window.
What’s next?
Next, you can learn about OpenTelemetry Python APIopen in new window to create your own instrumentations or browse existing instrumentationsopen in new window provided by the community.