sentry-mcp

getsentry/sentry-mcp

4.4

sentry-mcp is hosted online, so all tools can be tested directly either in theInspector tabor in theOnline Client.

If you are the rightful owner of sentry-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

Sentry-MCP is a prototype remote MCP server acting as middleware to the upstream Sentry API provider.

Try sentry-mcp with chat:

Tools

Functions exposed to the LLM to take actions

whoami

Identify the authenticated user in Sentry.

Use this tool when you need to:

  • Get the user's name and email address.

find_organizations

Find organizations that the user has access to in Sentry.

Use this tool when you need to:

  • View all organizations in Sentry
  • Find an organization's slug to aid other tool requests

find_teams

Find teams in an organization in Sentry.

Use this tool when you need to:

  • View all teams in a Sentry organization
  • Find a team's slug to aid other tool requests

find_projects

Find projects in Sentry.

Use this tool when you need to:

  • View all projects in a Sentry organization
  • Find a project's slug to aid other tool requests

find_releases

Find releases in Sentry.

Use this tool when you need to:

  • Find recent releases in a Sentry organization
  • Find the most recent version released of a specific project
  • Determine when a release was deployed to an environment
### Find the most recent releases in the 'my-organization' organization
find_releases(organizationSlug='my-organization')

Find releases matching '2ce6a27' in the 'my-organization' organization

find_releases(organizationSlug='my-organization', query='2ce6a27')
- If the user passes a parameter in the form of name/otherName, its likely in the format of /.

get_issue_details

Get detailed information about a specific Sentry issue by ID.

🔍 USE THIS TOOL WHEN USERS:

  • Provide a specific issue ID (e.g., 'CLOUDFLARE-MCP-41', 'PROJECT-123')
  • Ask to 'explain [ISSUE-ID]', 'tell me about [ISSUE-ID]'
  • Want details/stacktrace/analysis for a known issue
  • Provide a Sentry issue URL

❌ DO NOT USE for:

  • General searching or listing issues (use search_issues)
  • Root cause analysis (use analyze_issue_with_seer)

TRIGGER PATTERNS:

  • 'Explain ISSUE-123' → use get_issue_details
  • 'Tell me about PROJECT-456' → use get_issue_details
  • 'What happened in [issue URL]' → use get_issue_details
### Explain specific issue ``` get_issue_details(organizationSlug='my-organization', issueId='CLOUDFLARE-MCP-41') ```

Get details for event ID

get_issue_details(organizationSlug='my-organization', eventId='c49541c747cb4d8aa3efb70ca5aba243')
- If the user provides the `issueUrl`, you can ignore the other parameters. - If the user provides `issueId` or `eventId` (only one is needed), `organizationSlug` is required.

get_trace_details

Get detailed information about a specific Sentry trace by ID.

🔍 USE THIS TOOL WHEN USERS:

  • Provide a specific trace ID (e.g., 'a4d1aae7216b47ff8117cf4e09ce9d0a')
  • Ask to 'show me trace [TRACE-ID]', 'explain trace [TRACE-ID]'
  • Want high-level overview and link to view trace details in Sentry
  • Need trace statistics and span breakdown

❌ DO NOT USE for:

  • General searching for traces (use search_events with trace queries)
  • Individual span details (this shows trace overview)

TRIGGER PATTERNS:

  • 'Show me trace abc123' → use get_trace_details
  • 'Explain trace a4d1aae7216b47ff8117cf4e09ce9d0a' → use get_trace_details
  • 'What is trace [trace-id]' → use get_trace_details
### Get trace overview ``` get_trace_details(organizationSlug='my-organization', traceId='a4d1aae7216b47ff8117cf4e09ce9d0a') ``` - Trace IDs are 32-character hexadecimal strings

get_event_attachment

Download attachments from a Sentry event.

Use this tool when you need to:

  • Download files attached to a specific event
  • Access screenshots, log files, or other attachments uploaded with an error report
  • Retrieve attachment metadata and download URLs
### Download a specific attachment by ID
get_event_attachment(organizationSlug='my-organization', projectSlug='my-project', eventId='c49541c747cb4d8aa3efb70ca5aba243', attachmentId='12345')

List all attachments for an event

get_event_attachment(organizationSlug='my-organization', projectSlug='my-project', eventId='c49541c747cb4d8aa3efb70ca5aba243')
- If `attachmentId` is provided, the specific attachment will be downloaded as an embedded resource - If `attachmentId` is omitted, all attachments for the event will be listed with download information - The `projectSlug` is required to identify which project the event belongs to

search_events

Search for events AND perform counts/aggregations - the ONLY tool for statistics and counts.

Supports TWO query types:

  1. AGGREGATIONS (counts, sums, averages): 'how many errors', 'count of issues', 'total tokens'
  2. Individual events with timestamps: 'show me error logs from last hour'

🔢 USE THIS FOR ALL COUNTS/STATISTICS:

  • 'how many errors today' → returns count
  • 'count of database failures' → returns count
  • 'total number of issues' → returns count
  • 'average response time' → returns avg()
  • 'sum of tokens used' → returns sum()

📋 ALSO USE FOR INDIVIDUAL EVENTS:

  • 'error logs from last hour' → returns event list
  • 'database errors with timestamps' → returns event list
  • 'trace spans for slow API calls' → returns span list

Dataset Selection (AI automatically chooses):

  • errors: Exception/crash events
  • logs: Log entries
  • spans: Performance data, AI/LLM calls, token usage

❌ DO NOT USE for grouped issue lists → use search_issues

search_events(organizationSlug='my-org', naturalLanguageQuery='how many errors today') search_events(organizationSlug='my-org', naturalLanguageQuery='count of database failures this week') search_events(organizationSlug='my-org', naturalLanguageQuery='total tokens used by model') search_events(organizationSlug='my-org', naturalLanguageQuery='error logs from the last hour') - If the user passes a parameter in the form of name/otherName, it's likely in the format of /. - Parse org/project notation directly without calling find_organizations or find_projects.

find_dsns

List all Sentry DSNs for a specific project.

Use this tool when you need to:

  • Retrieve a SENTRY_DSN for a specific project
- If the user passes a parameter in the form of name/otherName, its likely in the format of /. - If only one parameter is provided, and it could be either `organizationSlug` or `projectSlug`, its probably `organizationSlug`, but if you're really uncertain you might want to call `find_organizations()` first.

analyze_issue_with_seer

Use Seer AI to analyze production errors and get detailed root cause analysis with specific code fixes.

Use this tool when you need:

  • Detailed AI-powered root cause analysis
  • Specific code fixes and implementation guidance
  • Step-by-step troubleshooting for complex issues
  • Understanding why an error is happening in production

What this tool provides:

  • Root cause analysis with code-level explanations
  • Specific file locations and line numbers where errors occur
  • Concrete code fixes you can apply
  • Step-by-step implementation guidance

This tool automatically:

  1. Checks if analysis already exists (instant results)
  2. Starts new AI analysis if needed (~2-5 minutes)
  3. Returns complete fix recommendations
### User: "What's causing this error? https://my-org.sentry.io/issues/PROJECT-1Z43"
analyze_issue_with_seer(issueUrl='https://my-org.sentry.io/issues/PROJECT-1Z43')

User: "Can you help me understand why this is failing in production?"

analyze_issue_with_seer(organizationSlug='my-organization', issueId='ERROR-456')
- Use this tool when you need deeper analysis beyond basic issue details - If the user provides an issueUrl, extract it and use that parameter alone - The analysis includes actual code snippets and fixes, not just error descriptions - Results are cached - subsequent calls return instantly

search_docs

Search Sentry documentation for SDK setup, instrumentation, and configuration guidance.

Use this tool when you need to:

  • Set up Sentry SDK in any language (Python, JavaScript, Go, Ruby, etc.)
  • Configure specific features like performance monitoring, error sampling, or release tracking
  • Implement custom instrumentation (spans, transactions, breadcrumbs)
  • Set up integrations with frameworks (Django, Flask, Express, Next.js, etc.)
  • Configure data scrubbing, filtering, or sampling rules
  • Troubleshoot SDK issues or find best practices

This tool searches technical documentation, NOT general information about Sentry as a company.

### Setting up Sentry in a Python Django app
search_docs(query='Django setup configuration SENTRY_DSN', guide='python/django')

Setting up source maps for Next.js

search_docs(query='source maps webpack upload', guide='javascript/nextjs')

Configuring release tracking

search_docs(query='release tracking deployment integration CI/CD')
- Use guide parameter to filter results to specific technologies (e.g., 'javascript' or 'javascript/nextjs') - Include the programming language/framework in your query for SDK-specific results - Use technical terms like 'instrumentation', 'spans', 'transactions' for performance docs - Include specific feature names like 'beforeSend', 'tracesSampleRate', 'SENTRY_DSN'

get_doc

Fetch the full markdown content of a Sentry documentation page.

Use this tool when you need to:

  • Read the complete documentation for a specific topic
  • Get detailed implementation examples or code snippets
  • Access the full context of a documentation page
  • Extract specific sections from documentation
### Get the Next.js integration guide
get_doc(path='/platforms/javascript/guides/nextjs.md')
- Use the path from search_docs results for accurate fetching - Paths should end with .md extension

search_issues

Search for grouped issues/problems in Sentry - returns a LIST of issues, NOT counts or aggregations.

Uses AI to translate natural language queries into Sentry issue search syntax. Returns grouped issues with metadata like title, status, and user count.

🔍 USE THIS TOOL WHEN USERS WANT:

  • A LIST of issues: 'show me issues', 'what problems do we have'
  • Filtered issue lists: 'unresolved issues', 'critical bugs'
  • Issues by impact: 'errors affecting more than 100 users'
  • Issues by assignment: 'issues assigned to me'

❌ DO NOT USE FOR COUNTS/AGGREGATIONS:

  • 'how many errors' → use search_events
  • 'count of issues' → use search_events
  • 'total number of errors today' → use search_events
  • 'sum/average/statistics' → use search_events

❌ ALSO DO NOT USE FOR:

  • Individual error events with timestamps → use search_events
  • Details about a specific issue ID → use get_issue_details

REMEMBER: This tool returns a LIST of issues, not counts or statistics!

search_issues(organizationSlug='my-org', naturalLanguageQuery='critical bugs from last week') search_issues(organizationSlug='my-org', naturalLanguageQuery='unhandled errors affecting 100+ users') search_issues(organizationSlug='my-org', naturalLanguageQuery='issues assigned to me') - If the user passes a parameter in the form of name/otherName, it's likely in the format of /. - Parse org/project notation directly without calling find_organizations or find_projects. - The projectSlugOrId parameter accepts both project slugs (e.g., 'my-project') and numeric IDs (e.g., '123456').

Prompts

Interactive templates invoked by user choice

find_errors_in_file

Use this prompt when you need to find errors in Sentry for a given file.

fix_issue_with_seer

Use this prompt when you need to fix an issue with Seer. You can pass in either an issueId and organizationSlug, or an issueUrl.

Resources

Contextual data attached and managed by the client

sentry-mcp-about

URI: sentry://about

MIME: text/markdown

Information about Sentry MCP service and its capabilities

javascript-docs

URI: https://docs.sentry.io/platforms/javascript/

MIME: text/markdown

Sentry SDK documentation for javascript

python-docs

URI: https://docs.sentry.io/platforms/python/

MIME: text/markdown

Sentry SDK documentation for python

java-docs

URI: https://docs.sentry.io/platforms/java/

MIME: text/markdown

Sentry SDK documentation for java

dotnet-docs

URI: https://docs.sentry.io/platforms/dotnet/

MIME: text/markdown

Sentry SDK documentation for dotnet

go-docs

URI: https://docs.sentry.io/platforms/go/

MIME: text/markdown

Sentry SDK documentation for go

php-docs

URI: https://docs.sentry.io/platforms/php/

MIME: text/markdown

Sentry SDK documentation for php

ruby-docs

URI: https://docs.sentry.io/platforms/ruby/

MIME: text/markdown

Sentry SDK documentation for ruby

android-docs

URI: https://docs.sentry.io/platforms/android/

MIME: text/markdown

Sentry SDK documentation for android

apple-docs

URI: https://docs.sentry.io/platforms/apple/

MIME: text/markdown

Sentry SDK documentation for apple

unity-docs

URI: https://docs.sentry.io/platforms/unity/

MIME: text/markdown

Sentry SDK documentation for unity

unreal-docs

URI: https://docs.sentry.io/platforms/unreal/

MIME: text/markdown

Sentry SDK documentation for unreal

rust-docs

URI: https://docs.sentry.io/platforms/rust/

MIME: text/markdown

Sentry SDK documentation for rust

elixir-docs

URI: https://docs.sentry.io/platforms/elixir/

MIME: text/markdown

Sentry SDK documentation for elixir

kotlin-docs

URI: https://docs.sentry.io/platforms/kotlin/

MIME: text/markdown

Sentry SDK documentation for kotlin

native-docs

URI: https://docs.sentry.io/platforms/native/

MIME: text/markdown

Sentry SDK documentation for native

dart-docs

URI: https://docs.sentry.io/platforms/dart/

MIME: text/markdown

Sentry SDK documentation for dart

godot-docs

URI: https://docs.sentry.io/platforms/godot/

MIME: text/markdown

Sentry SDK documentation for godot

nintendo-switch-docs

URI: https://docs.sentry.io/platforms/nintendo-switch/

MIME: text/markdown

Sentry SDK documentation for nintendo-switch

playstation-docs

URI: https://docs.sentry.io/platforms/playstation/

MIME: text/markdown

Sentry SDK documentation for playstation

powershell-docs

URI: https://docs.sentry.io/platforms/powershell/

MIME: text/markdown

Sentry SDK documentation for powershell

react-native-docs

URI: https://docs.sentry.io/platforms/react-native/

MIME: text/markdown

Sentry SDK documentation for react-native

xbox-docs

URI: https://docs.sentry.io/platforms/xbox/

MIME: text/markdown

Sentry SDK documentation for xbox

javascript-nextjs-guide

URI: https://docs.sentry.io/platforms/javascript/guides/nextjs/

MIME: text/markdown

Sentry integration guide for nextjs on javascript

javascript-react-guide

URI: https://docs.sentry.io/platforms/javascript/guides/react/

MIME: text/markdown

Sentry integration guide for react on javascript

javascript-gatsby-guide

URI: https://docs.sentry.io/platforms/javascript/guides/gatsby/

MIME: text/markdown

Sentry integration guide for gatsby on javascript

javascript-remix-guide

URI: https://docs.sentry.io/platforms/javascript/guides/remix/

MIME: text/markdown

Sentry integration guide for remix on javascript

javascript-vue-guide

URI: https://docs.sentry.io/platforms/javascript/guides/vue/

MIME: text/markdown

Sentry integration guide for vue on javascript

javascript-angular-guide

URI: https://docs.sentry.io/platforms/javascript/guides/angular/

MIME: text/markdown

Sentry integration guide for angular on javascript

javascript-hono-guide

URI: https://docs.sentry.io/platforms/javascript/guides/hono/

MIME: text/markdown

Sentry integration guide for hono on javascript

javascript-svelte-guide

URI: https://docs.sentry.io/platforms/javascript/guides/svelte/

MIME: text/markdown

Sentry integration guide for svelte on javascript

javascript-express-guide

URI: https://docs.sentry.io/platforms/javascript/guides/express/

MIME: text/markdown

Sentry integration guide for express on javascript

javascript-fastify-guide

URI: https://docs.sentry.io/platforms/javascript/guides/fastify/

MIME: text/markdown

Sentry integration guide for fastify on javascript

javascript-astro-guide

URI: https://docs.sentry.io/platforms/javascript/guides/astro/

MIME: text/markdown

Sentry integration guide for astro on javascript

javascript-bun-guide

URI: https://docs.sentry.io/platforms/javascript/guides/bun/

MIME: text/markdown

Sentry integration guide for bun on javascript

javascript-capacitor-guide

URI: https://docs.sentry.io/platforms/javascript/guides/capacitor/

MIME: text/markdown

Sentry integration guide for capacitor on javascript

javascript-cloudflare-guide

URI: https://docs.sentry.io/platforms/javascript/guides/cloudflare/

MIME: text/markdown

Sentry integration guide for cloudflare on javascript

javascript-connect-guide

URI: https://docs.sentry.io/platforms/javascript/guides/connect/

MIME: text/markdown

Sentry integration guide for connect on javascript

javascript-cordova-guide

URI: https://docs.sentry.io/platforms/javascript/guides/cordova/

MIME: text/markdown

Sentry integration guide for cordova on javascript

javascript-deno-guide

URI: https://docs.sentry.io/platforms/javascript/guides/deno/

MIME: text/markdown

Sentry integration guide for deno on javascript

javascript-electron-guide

URI: https://docs.sentry.io/platforms/javascript/guides/electron/

MIME: text/markdown

Sentry integration guide for electron on javascript

javascript-ember-guide

URI: https://docs.sentry.io/platforms/javascript/guides/ember/

MIME: text/markdown

Sentry integration guide for ember on javascript

javascript-nuxt-guide

URI: https://docs.sentry.io/platforms/javascript/guides/nuxt/

MIME: text/markdown

Sentry integration guide for nuxt on javascript

javascript-solid-guide

URI: https://docs.sentry.io/platforms/javascript/guides/solid/

MIME: text/markdown

Sentry integration guide for solid on javascript

javascript-solidstart-guide

URI: https://docs.sentry.io/platforms/javascript/guides/solidstart/

MIME: text/markdown

Sentry integration guide for solidstart on javascript

javascript-sveltekit-guide

URI: https://docs.sentry.io/platforms/javascript/guides/sveltekit/

MIME: text/markdown

Sentry integration guide for sveltekit on javascript

javascript-tanstack-react-guide

URI: https://docs.sentry.io/platforms/javascript/guides/tanstack-react/

MIME: text/markdown

Sentry integration guide for tanstack-react on javascript

javascript-wasm-guide

URI: https://docs.sentry.io/platforms/javascript/guides/wasm/

MIME: text/markdown

Sentry integration guide for wasm on javascript

javascript-node-guide

URI: https://docs.sentry.io/platforms/javascript/guides/node/

MIME: text/markdown

Sentry integration guide for node on javascript

javascript-koa-guide

URI: https://docs.sentry.io/platforms/javascript/guides/koa/

MIME: text/markdown

Sentry integration guide for koa on javascript

javascript-nestjs-guide

URI: https://docs.sentry.io/platforms/javascript/guides/nestjs/

MIME: text/markdown

Sentry integration guide for nestjs on javascript

javascript-hapi-guide

URI: https://docs.sentry.io/platforms/javascript/guides/hapi/

MIME: text/markdown

Sentry integration guide for hapi on javascript

python-django-guide

URI: https://docs.sentry.io/platforms/python/guides/django/

MIME: text/markdown

Sentry integration guide for django on python

python-flask-guide

URI: https://docs.sentry.io/platforms/python/guides/flask/

MIME: text/markdown

Sentry integration guide for flask on python

python-fastapi-guide

URI: https://docs.sentry.io/platforms/python/guides/fastapi/

MIME: text/markdown

Sentry integration guide for fastapi on python

python-celery-guide

URI: https://docs.sentry.io/platforms/python/guides/celery/

MIME: text/markdown

Sentry integration guide for celery on python

python-tornado-guide

URI: https://docs.sentry.io/platforms/python/guides/tornado/

MIME: text/markdown

Sentry integration guide for tornado on python

python-pyramid-guide

URI: https://docs.sentry.io/platforms/python/guides/pyramid/

MIME: text/markdown

Sentry integration guide for pyramid on python

python-aiohttp-guide

URI: https://docs.sentry.io/platforms/python/guides/aiohttp/

MIME: text/markdown

Sentry integration guide for aiohttp on python

python-anthropic-guide

URI: https://docs.sentry.io/platforms/python/guides/anthropic/

MIME: text/markdown

Sentry integration guide for anthropic on python

python-airflow-guide

URI: https://docs.sentry.io/platforms/python/guides/airflow/

MIME: text/markdown

Sentry integration guide for airflow on python

python-aws-lambda-guide

URI: https://docs.sentry.io/platforms/python/guides/aws-lambda/

MIME: text/markdown

Sentry integration guide for aws-lambda on python

python-boto3-guide

URI: https://docs.sentry.io/platforms/python/guides/boto3/

MIME: text/markdown

Sentry integration guide for boto3 on python

python-bottle-guide

URI: https://docs.sentry.io/platforms/python/guides/bottle/

MIME: text/markdown

Sentry integration guide for bottle on python

python-chalice-guide

URI: https://docs.sentry.io/platforms/python/guides/chalice/

MIME: text/markdown

Sentry integration guide for chalice on python

python-dramatiq-guide

URI: https://docs.sentry.io/platforms/python/guides/dramatiq/

MIME: text/markdown

Sentry integration guide for dramatiq on python

python-falcon-guide

URI: https://docs.sentry.io/platforms/python/guides/falcon/

MIME: text/markdown

Sentry integration guide for falcon on python

python-langchain-guide

URI: https://docs.sentry.io/platforms/python/guides/langchain/

MIME: text/markdown

Sentry integration guide for langchain on python

python-litestar-guide

URI: https://docs.sentry.io/platforms/python/guides/litestar/

MIME: text/markdown

Sentry integration guide for litestar on python

python-logging-guide

URI: https://docs.sentry.io/platforms/python/guides/logging/

MIME: text/markdown

Sentry integration guide for logging on python

python-loguru-guide

URI: https://docs.sentry.io/platforms/python/guides/loguru/

MIME: text/markdown

Sentry integration guide for loguru on python

python-openai-guide

URI: https://docs.sentry.io/platforms/python/guides/openai/

MIME: text/markdown

Sentry integration guide for openai on python

python-quart-guide

URI: https://docs.sentry.io/platforms/python/guides/quart/

MIME: text/markdown

Sentry integration guide for quart on python

python-ray-guide

URI: https://docs.sentry.io/platforms/python/guides/ray/

MIME: text/markdown

Sentry integration guide for ray on python

python-redis-guide

URI: https://docs.sentry.io/platforms/python/guides/redis/

MIME: text/markdown

Sentry integration guide for redis on python

python-rq-guide

URI: https://docs.sentry.io/platforms/python/guides/rq/

MIME: text/markdown

Sentry integration guide for rq on python

python-sanic-guide

URI: https://docs.sentry.io/platforms/python/guides/sanic/

MIME: text/markdown

Sentry integration guide for sanic on python

python-sqlalchemy-guide

URI: https://docs.sentry.io/platforms/python/guides/sqlalchemy/

MIME: text/markdown

Sentry integration guide for sqlalchemy on python

python-starlette-guide

URI: https://docs.sentry.io/platforms/python/guides/starlette/

MIME: text/markdown

Sentry integration guide for starlette on python

dart-flutter-guide

URI: https://docs.sentry.io/platforms/dart/guides/flutter/

MIME: text/markdown

Sentry integration guide for flutter on dart

dotnet-aspnetcore-guide

URI: https://docs.sentry.io/platforms/dotnet/guides/aspnetcore/

MIME: text/markdown

Sentry integration guide for aspnetcore on dotnet

dotnet-maui-guide

URI: https://docs.sentry.io/platforms/dotnet/guides/maui/

MIME: text/markdown

Sentry integration guide for maui on dotnet

dotnet-wpf-guide

URI: https://docs.sentry.io/platforms/dotnet/guides/wpf/

MIME: text/markdown

Sentry integration guide for wpf on dotnet

dotnet-winforms-guide

URI: https://docs.sentry.io/platforms/dotnet/guides/winforms/

MIME: text/markdown

Sentry integration guide for winforms on dotnet

dotnet-aspnet-guide

URI: https://docs.sentry.io/platforms/dotnet/guides/aspnet/

MIME: text/markdown

Sentry integration guide for aspnet on dotnet

dotnet-aws-lambda-guide

URI: https://docs.sentry.io/platforms/dotnet/guides/aws-lambda/

MIME: text/markdown

Sentry integration guide for aws-lambda on dotnet

dotnet-azure-functions-guide

URI: https://docs.sentry.io/platforms/dotnet/guides/azure-functions/

MIME: text/markdown

Sentry integration guide for azure-functions on dotnet

dotnet-blazor-webassembly-guide

URI: https://docs.sentry.io/platforms/dotnet/guides/blazor-webassembly/

MIME: text/markdown

Sentry integration guide for blazor-webassembly on dotnet

dotnet-entityframework-guide

URI: https://docs.sentry.io/platforms/dotnet/guides/entityframework/

MIME: text/markdown

Sentry integration guide for entityframework on dotnet

dotnet-google-cloud-functions-guide

URI: https://docs.sentry.io/platforms/dotnet/guides/google-cloud-functions/

MIME: text/markdown

Sentry integration guide for google-cloud-functions on dotnet

dotnet-extensions-logging-guide

URI: https://docs.sentry.io/platforms/dotnet/guides/extensions-logging/

MIME: text/markdown

Sentry integration guide for extensions-logging on dotnet

dotnet-log4net-guide

URI: https://docs.sentry.io/platforms/dotnet/guides/log4net/

MIME: text/markdown

Sentry integration guide for log4net on dotnet

dotnet-nlog-guide

URI: https://docs.sentry.io/platforms/dotnet/guides/nlog/

MIME: text/markdown

Sentry integration guide for nlog on dotnet

dotnet-serilog-guide

URI: https://docs.sentry.io/platforms/dotnet/guides/serilog/

MIME: text/markdown

Sentry integration guide for serilog on dotnet

dotnet-uwp-guide

URI: https://docs.sentry.io/platforms/dotnet/guides/uwp/

MIME: text/markdown

Sentry integration guide for uwp on dotnet

dotnet-xamarin-guide

URI: https://docs.sentry.io/platforms/dotnet/guides/xamarin/

MIME: text/markdown

Sentry integration guide for xamarin on dotnet

java-spring-guide

URI: https://docs.sentry.io/platforms/java/guides/spring/

MIME: text/markdown

Sentry integration guide for spring on java

java-spring-boot-guide

URI: https://docs.sentry.io/platforms/java/guides/spring-boot/

MIME: text/markdown

Sentry integration guide for spring-boot on java

java-android-guide

URI: https://docs.sentry.io/platforms/java/guides/android/

MIME: text/markdown

Sentry integration guide for android on java

java-jul-guide

URI: https://docs.sentry.io/platforms/java/guides/jul/

MIME: text/markdown

Sentry integration guide for jul on java

java-log4j2-guide

URI: https://docs.sentry.io/platforms/java/guides/log4j2/

MIME: text/markdown

Sentry integration guide for log4j2 on java

java-logback-guide

URI: https://docs.sentry.io/platforms/java/guides/logback/

MIME: text/markdown

Sentry integration guide for logback on java

java-servlet-guide

URI: https://docs.sentry.io/platforms/java/guides/servlet/

MIME: text/markdown

Sentry integration guide for servlet on java

go-echo-guide

URI: https://docs.sentry.io/platforms/go/guides/echo/

MIME: text/markdown

Sentry integration guide for echo on go

go-fasthttp-guide

URI: https://docs.sentry.io/platforms/go/guides/fasthttp/

MIME: text/markdown

Sentry integration guide for fasthttp on go

go-fiber-guide

URI: https://docs.sentry.io/platforms/go/guides/fiber/

MIME: text/markdown

Sentry integration guide for fiber on go

go-gin-guide

URI: https://docs.sentry.io/platforms/go/guides/gin/

MIME: text/markdown

Sentry integration guide for gin on go

go-http-guide

URI: https://docs.sentry.io/platforms/go/guides/http/

MIME: text/markdown

Sentry integration guide for http on go

go-iris-guide

URI: https://docs.sentry.io/platforms/go/guides/iris/

MIME: text/markdown

Sentry integration guide for iris on go

go-logrus-guide

URI: https://docs.sentry.io/platforms/go/guides/logrus/

MIME: text/markdown

Sentry integration guide for logrus on go

go-negroni-guide

URI: https://docs.sentry.io/platforms/go/guides/negroni/

MIME: text/markdown

Sentry integration guide for negroni on go

go-slog-guide

URI: https://docs.sentry.io/platforms/go/guides/slog/

MIME: text/markdown

Sentry integration guide for slog on go

go-zerolog-guide

URI: https://docs.sentry.io/platforms/go/guides/zerolog/

MIME: text/markdown

Sentry integration guide for zerolog on go

php-laravel-guide

URI: https://docs.sentry.io/platforms/php/guides/laravel/

MIME: text/markdown

Sentry integration guide for laravel on php

php-symfony-guide

URI: https://docs.sentry.io/platforms/php/guides/symfony/

MIME: text/markdown

Sentry integration guide for symfony on php

ruby-delayed_job-guide

URI: https://docs.sentry.io/platforms/ruby/guides/delayed_job/

MIME: text/markdown

Sentry integration guide for delayed_job on ruby

ruby-rack-guide

URI: https://docs.sentry.io/platforms/ruby/guides/rack/

MIME: text/markdown

Sentry integration guide for rack on ruby

ruby-rails-guide

URI: https://docs.sentry.io/platforms/ruby/guides/rails/

MIME: text/markdown

Sentry integration guide for rails on ruby

ruby-resque-guide

URI: https://docs.sentry.io/platforms/ruby/guides/resque/

MIME: text/markdown

Sentry integration guide for resque on ruby

ruby-sidekiq-guide

URI: https://docs.sentry.io/platforms/ruby/guides/sidekiq/

MIME: text/markdown

Sentry integration guide for sidekiq on ruby

android-kotlin-guide

URI: https://docs.sentry.io/platforms/android/guides/kotlin/

MIME: text/markdown

Sentry integration guide for kotlin on android

apple-ios-guide

URI: https://docs.sentry.io/platforms/apple/guides/ios/

MIME: text/markdown

Sentry integration guide for ios on apple

apple-macos-guide

URI: https://docs.sentry.io/platforms/apple/guides/macos/

MIME: text/markdown

Sentry integration guide for macos on apple

apple-watchos-guide

URI: https://docs.sentry.io/platforms/apple/guides/watchos/

MIME: text/markdown

Sentry integration guide for watchos on apple

apple-tvos-guide

URI: https://docs.sentry.io/platforms/apple/guides/tvos/

MIME: text/markdown

Sentry integration guide for tvos on apple

apple-visionos-guide

URI: https://docs.sentry.io/platforms/apple/guides/visionos/

MIME: text/markdown

Sentry integration guide for visionos on apple

kotlin-multiplatform-guide

URI: https://docs.sentry.io/platforms/kotlin/guides/multiplatform/

MIME: text/markdown

Sentry integration guide for multiplatform on kotlin