---
title: "Backend Error Monitoring Tutorial"
description: "Follow this tutorial to set up Sentry to monitor errors for a sample Python backend application. By the end, you'll be able to configure the SDK for your needs and enrich your event data."
url: https://docs.sentry.io/product/sentry-basics/integrate-backend/
---

# Backend Error Monitoring Tutorial

This step-by-step tutorial walks you through the flow of setting up and configuring your Sentry account to monitor errors in your Python backend application. As part of this tutorial, you will:

* Add basic configurations to the Sentry SDK
* Monitor various types of events and errors to Sentry
* Implement error tracing between your frontend and backend applications

This tutorial uses a [sample Django application](https://github.com/sentry-tutorials/backend-monitoring). This allows us to streamline the steps required to getting the maximum value out of integrating Sentry into your development workflow.

Alternatively, you can follow this guide as a reference and apply the relevant changes directly to your source code.

## [Prerequisites](https://docs.sentry.io/product/sentry-basics/integrate-backend.md#prerequisites)

* A [Sentry](https://sentry.io) account, or [sign up](https://sentry.io/signup/) for one
* A [GitHub](https://github.com/) account, or [sign up](https://github.com/join) for one

## [Next](https://docs.sentry.io/product/sentry-basics/integrate-backend.md#next)

[Getting Started](https://docs.sentry.io/guides/integrate-backend/getting-started.md)

## Pages in this section

- [Getting Started](https://docs.sentry.io/product/sentry-basics/integrate-backend/getting-started.md)
- [Configuration Options](https://docs.sentry.io/product/sentry-basics/integrate-backend/configuration-options.md)
- [Capturing Errors](https://docs.sentry.io/product/sentry-basics/integrate-backend/capturing-errors.md)
