DEV Community

Cover image for Monitoring Django with OpenTelemetry and Uptrace
Vladimir Mihailenco for Uptrace

Posted on • Updated on

Monitoring Django with OpenTelemetry and Uptrace

Still using Jaeger/Sentry? Uptrace is an open-source APM tool that supports distributed tracing, metrics, and logs. You can use it to monitor applications and set up automatic alerts to receive notifications via email, Slack, Telegram, and more.

Uptrace distributed tracing tool


What is tracing?

Distributed Tracing allows you to see how a request progresses through different services and components, timings of every operation, any logs and errors as they occur. In a distributed environment, tracing also helps you understand relationships and interactions between distributed micro-services and systems.

Distributed tracing

Using tracing, you can break down requests into spans. 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.

Spans and trace

To learn more about tracing, see Distributed tracing using OpenTelemetry.

What is OpenTelemetry?

OpenTelemetry is an open-source observability framework hosted by Cloud Native Computing Foundation. It is a merger of OpenCensus and OpenTracing projects.

OpenTelemetry aims to provide a single standard across all types of observability signals such as OpenTelemetry tracing and OpenTelemetry metrics.

OpenTelemetry specifies how to collect and send telemetry data to backend platforms. With OpenTelemetry, you can instrument your application once and then add or change vendors without changing the instrumentation.

OpenTelemetry is available for most programming languages and provides interoperability across different languages and environments.

Creating spans

To measure performance of database queries or HTTP requests, you can create a span using OpenTelemetry Python API:

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
Enter fullscreen mode Exit fullscreen mode

To record contextual information, you can annotate spans with attributes. For example, an HTTP endpoint may have such attributes as http.method = GET and http.route = /projects/:id.

# To avoid expensive computations, check that span is recording
# before setting any attributes.
if span.is_recording():
    span.set_attribute("http.method", "GET")
    span.set_attribute("http.route", "/projects/:id")
Enter fullscreen mode Exit fullscreen mode

You can also record exceptions and set the span status code to indicate an error:

except ValueError as exc:
    # Record the exception and update the span status.
    span.record_exception(exc)
    span.set_status(trace.Status(trace.StatusCode.ERROR, str(exc)))
Enter fullscreen mode Exit fullscreen mode

See OpenTelemetry Python tracing for details.

What is Uptrace?

Uptrace is an open source DataDog competitor with an intuitive query builder, rich dashboards, alerting rules, and integrations for most languages and frameworks. It can process billions of spans and metrics on a single server and allows to monitor your applications at 10x lower cost.

Uptrace uses ClickHouse database to store traces, metrics, and logs. You can use it to monitor applications and set up automatic alerts to receive notifications via email, Slack, Telegram, and more.

Example application

In this tutorial, you will be instrumenting a toy app 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
Enter fullscreen mode Exit fullscreen mode

The app comes with some dependencies that you can install with:

pip install -r requirements.txt
Enter fullscreen mode Exit fullscreen mode

Then you can run migrations to initialize the database:

./manage.py migrate
Enter fullscreen mode Exit fullscreen mode

Configuring OpenTelemetry

Uptrace provides OpenTelemetry Python distro that configures OpenTelemetry SDK for you. To install the distro:

pip install uptrace
Enter fullscreen mode Exit fullscreen mode

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
Enter fullscreen mode Exit fullscreen mode

See Uptrace Python documentation for details.

Instrumenting Django

To instrument Django, you need a corresponding OpenTelemetry Django instrumentation:

pip install opentelemetry-instrumentation-django
Enter fullscreen mode Exit fullscreen mode

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()
Enter fullscreen mode Exit fullscreen mode

Running the example

You can start Uptrace with a single command using Docker example:

docker-compose up -d
Enter fullscreen mode Exit fullscreen mode

And then start the app passing Uptrace DSN as an env variable:

export UPTRACE_DSN=http://project2_secret_token@localhost:14317/2
./manage.py runserver
Enter fullscreen mode Exit fullscreen mode

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:

Django

Popular instrumentations

You also check the following popular OpenTelemetry instrumentations:

Top comments (0)