---
title: "Breadcrumbs"
description: "Learn more about what Sentry uses to create a trail of events (breadcrumbs) that happened prior to an issue."
url: https://docs.sentry.io/platforms/dotnet/guides/aspnetcore/enriching-events/breadcrumbs/
---

# Breadcrumbs | Sentry for ASP.NET Core

##### Hey... did you mean Logs? Sentry has them now!

Manual breadcrumbs had a good run, but [Sentry's got logs](https://docs.sentry.io/platforms/dotnet/guides/aspnetcore/logs.md). Structured, searchable, and way easier to alert or query on. Check them out!

Sentry uses *breadcrumbs* to create a trail of events that happened prior to an issue. These events are very similar to traditional logs, but can record more rich structured data.

This page provides an overview of manual breadcrumb recording and customization. Learn more about the information that displays on the **Issue Details** page and how you can filter breadcrumbs to quickly resolve issues in [Using Breadcrumbs](https://docs.sentry.io/product/error-monitoring/breadcrumbs.md).

##### Learn about SDK usage

Developers who want to modify the breadcrumbs interface can learn more in our [developer documentation about the Breadcrumbs Interface](https://develop.sentry.dev/sdk/foundations/transport/event-payloads/breadcrumbs/).

## [Manual Breadcrumbs](https://docs.sentry.io/platforms/dotnet/guides/aspnetcore/enriching-events/breadcrumbs.md#manual-breadcrumbs)

You can manually add breadcrumbs whenever something interesting happens. For example, you might manually record a breadcrumb if the user authenticates or another state change occurs.

Manually record a breadcrumb:

```csharp
SentrySdk.AddBreadcrumb(
    message: "Authenticated user " + user.Email,
    category: "auth",
    level: BreadcrumbLevel.Info);
```

## [Automatic Breadcrumbs](https://docs.sentry.io/platforms/dotnet/guides/aspnetcore/enriching-events/breadcrumbs.md#automatic-breadcrumbs)

The .NET SDK captures breadcrumbs automatically for:

* **HTTP requests** made using `HttpClient` are captured automatically when using `SentryHttpMessageHandler`. See [HTTP Client Errors](https://docs.sentry.io/platforms/dotnet/guides/aspnetcore/configuration/http-client-errors.md) for setup instructions.

* **Logs**

  * Logs at or above a configured level are captured as breadcrumbs when using logging integrations:
  * [Microsoft.Extensions.Logging](https://docs.sentry.io/platforms/dotnet/guides/aspnetcore/guides/extensions-logging.md) (default breadcrumb level: `Information`)
  * [Serilog](https://docs.sentry.io/platforms/dotnet/guides/aspnetcore/guides/serilog.md)
  * [NLog](https://docs.sentry.io/platforms/dotnet/guides/aspnetcore/guides/nlog.md)
  * [log4net](https://docs.sentry.io/platforms/dotnet/guides/aspnetcore/guides/log4net.md)

* **Database Queries**

  * Database queries are captured as breadcrumbs for [Entity Framework 6](https://docs.sentry.io/platforms/dotnet/guides/aspnetcore/guides/entityframework.md). For Entity Framework Core, queries are captured automatically via the DiagnosticSource integration (see [Automatic Instrumentation](https://docs.sentry.io/platforms/dotnet/guides/aspnetcore/tracing/instrumentation/automatic-instrumentation.md#diagnosticsource-integration)).

* **MAUI Application Events**

  * For [MAUI](https://docs.sentry.io/platforms/dotnet/guides/aspnetcore/guides/maui.md) applications, the SDK captures application lifecycle and user interaction events including navigation, window lifecycle, element rendering, and user actions.

* **GraphQL Requests**

  * When using `SentryGraphQLHttpMessageHandler` GraphQL requests are captured as breadcrumbs, including query type, operation name, and performance data.

## [Customize Breadcrumbs](https://docs.sentry.io/platforms/dotnet/guides/aspnetcore/enriching-events/breadcrumbs.md#customize-breadcrumbs)

The SDK allows you to customize breadcrumbs through the `BeforeBreadcrumb` hook.

This hook is passed an already assembled breadcrumb and, optionally, [a `hint` object](https://docs.sentry.io/platforms/dotnet/guides/aspnetcore/configuration/filtering.md#using-hints) containing extra metadata. The function can modify the breadcrumb or decide to discard it entirely by returning `null`:

```csharp
// Add this to the SDK initialization callback
options.SetBeforeBreadcrumb(breadcrumb
    // Ignore breadcrumbs from Spammy logger
    => breadcrumb.Category == "Spammy.Logger"
        ? null
        : breadcrumb);
```
