Product Analytics Quick Start Guide
Quick Deploy
Deploy Plausible Analytics in 5 minutes:
# 1. Deploy via ArgoCD
kubectl apply -f platform/apps/plausible-application.yaml
# 2. Wait for deployment
kubectl wait --for=condition=Ready pod -l app=plausible -n fawkes --timeout=300s
# 3. Validate
make validate-at-e3-011 NAMESPACE=fawkes
First Login
- Open https://plausible.fawkes.idp
- Login with:
- Email:
admin@fawkes.local - Password:
changeme-admin-password - ⚠️ Change password immediately!
Add Your First Site
- Click "+ Add website"
- Enter domain:
backstage.fawkes.idp - Select timezone
- Click "Add site"
Start Tracking
Backstage is already configured! Just visit: https://backstage.fawkes.idp
Check real-time stats in Plausible dashboard.
Configure Custom Events
- Go to Site Settings → Goals
- Click "+ Add goal"
- Add these custom events:
Deploy ApplicationCreate ServiceView DocumentationRun Pipeline
Track Events from Code
// In your application
plausible("Deploy Application", {
props: {
language: "nodejs",
template: "express",
},
});
Next Steps
- [ ] Change default admin password
- [ ] Configure additional sites
- [ ] Set up custom goals
- [ ] Configure data retention (Settings → Data Retention)
- [ ] Explore dashboard features
- [ ] Set up API access (Settings → API Keys)
Need Help?
- 📖 Full Documentation
- 🔧 Implementation Guide
- 🐛 Troubleshooting
- ✅ Validation Script