Quick Start Guide

Get your error tracking up and running in under 5 minutes

Step 1: Create a Project

First, log in to your dashboard and create a new project:

  1. Click the "Create Project" button
  2. Enter your project name (e.g., "My Awesome App")
  3. Select your technology stack
  4. Click "Create Project"

Save your API Key and Security Key - you'll need them in the next step!

Step 2: Install the Integration

Choose your programming language and follow the integration guide:

Step 3: Send Your First Error

Test your integration by sending a test error:

curl -X POST https://your-domain.com/api/ingest/YOUR_API_KEY \
  -H "Content-Type: application/json" \
  -H "X-Security-Key: YOUR_SECURITY_KEY" \
  -d '{
    "message": "Test error from Quick Start",
    "stackTrace": "at TestFunction() in test.cs:line 42"
  }'

Step 4: View Your Errors

Go to your dashboard and click "View Logs" on your project. You should see your test error!

Success!

You're now tracking errors in real-time. Check out language-specific guides for advanced integration.

Next Steps

  • Add error tracking to your production application
  • Set up error notifications (coming soon)
  • Invite team members to collaborate
  • Explore advanced filtering and search