Overview
Imagine watching a video of every user who encountered a bug in your Astro app. That's what session replay gives you — complete visual context for every error.
Bugsly provides a first-class Astro integration for session replay that takes minutes to set up and immediately starts delivering value.
Installation and Setup
Start by adding Bugsly to your project:
npx astro add @bugsly/astroNext, initialize the SDK in your application:
// astro.config.mjs
import bugsly from "@bugsly/astro";
export default defineConfig({
integrations: [
bugsly({ dsn: "YOUR_BUGSLY_DSN", tracesSampleRate: 1.0 }),
],
});How It Works
Once initialized, the Bugsly Astro SDK automatically instruments your application. Here's what happens behind the scenes:
- Automatic error capture: Unhandled exceptions and promise rejections are caught and reported with full stack traces
- Context enrichment: Each event includes environment data, request details, and user context where available
- Intelligent grouping: Similar errors are grouped together so you see issues, not individual events
- Performance data: Transaction traces help you understand the performance impact of errors
Customizing Your Integration
For Astro projects, we recommend enabling these additional features after the basic setup:
- Source maps (if applicable) — upload source maps during your build so Bugsly can display readable stack traces
- User feedback — prompt users who encounter errors for additional context
- Custom tags — add business-specific metadata to events for filtering and analysis
Bugsly's dashboard will become your team's go-to tool for understanding what's happening in your Astro production environment.
Try Bugsly Free
AI-powered error tracking that explains your bugs. Set up in 2 minutes, free forever for small projects.
Get Started FreeRelated Articles
Testing Error Scenarios in Spring Boot Applications
Comprehensive guide to testing error scenarios in Spring Boot with MockMvc, exception handlers, integration tests, and fault injection.
Read moreHow to Set Up Session Replay in Swift
Step-by-step tutorial for configuring Bugsly session replay in Swift. Includes code snippets and optimization tips.
Read moreSetting Up Performance Monitoring in .NET
Set up performance monitoring for .NET using Bugsly. Quick installation, configuration, and verification steps included.
Read moreHow to Set Up Error Tracking in PHP
Step-by-step tutorial for configuring Bugsly error tracking in PHP. Includes code snippets and optimization tips.
Read more