Analytics
Configure analytics providers for your LaunchSaaS application
Analytics
LaunchSaaS supports multiple analytics providers. Choose one or more based on your needs.
Supported Providers
| Provider | Type | Free Tier |
|---|---|---|
| Vercel Analytics | Performance & Web | Limited |
| Google Analytics | Full analytics | Yes |
| Plausible | Privacy-focused | No |
| Umami | Privacy-focused | Self-host |
| PostHog | Product analytics | Yes |
| OpenPanel | Open source | Self-host |
Setup
Vercel Analytics
If deploying to Vercel, simply enable in your .env:
NEXT_PUBLIC_VERCEL_ANALYTICS_ENABLED=trueGoogle Analytics
- Go to Google Analytics
- Create a new property
- Get your Measurement ID (starts with
G-) - Add to your
.env:
NEXT_PUBLIC_GOOGLE_ANALYTICS_ID="G-XXXXXXXXXX"Plausible
- Sign up at plausible.io
- Add your domain
- Add to your
.env:
NEXT_PUBLIC_PLAUSIBLE_DOMAIN="yourdomain.com"Umami
- Self-host Umami or use Umami Cloud
- Create a website and get the Website ID
- Add to your
.env:
NEXT_PUBLIC_UMAMI_WEBSITE_ID="your-website-id"
NEXT_PUBLIC_UMAMI_URL="https://your-umami-instance.com/script.js"PostHog
- Sign up at posthog.com
- Create a project and get your API key
- Add to your
.env:
NEXT_PUBLIC_POSTHOG_KEY="phc_..."
NEXT_PUBLIC_POSTHOG_HOST="https://app.posthog.com"OpenPanel
- Self-host OpenPanel or use their cloud
- Get your Client ID
- Add to your
.env:
NEXT_PUBLIC_OPENPANEL_CLIENT_ID="your-client-id"References
- Vercel Analytics Documentation
- Google Analytics Documentation
- Plausible Documentation
- Umami Documentation
- PostHog Documentation