Entrolytics Features
Explore Entrolytics features
Features
Entrolytics provides comprehensive web analytics while respecting user privacy. Explore powerful features designed for modern web applications and e-commerce.
Real-Time Dashboard
Monitor your website traffic as it happens with instant updates and live visitor tracking.
Traffic Analytics
Page Views & Sessions
Key metrics at a glance:
- Total page views - All page loads
- Unique visitors - Individual users
- Sessions - Complete user visits
- Bounce rate - Single-page sessions
- Average session duration - Time spent on site
- Pages per session - Engagement depth
View trends over time with interactive charts.
Referrers & Traffic Sources
See where your traffic comes from:
Direct traffic:
- Typed URL or bookmarks
- Email links (if not tagged)
- Mobile apps
Referral sources:
- Social media (Twitter, Facebook, LinkedIn, Reddit)
- Search engines (Google, Bing, DuckDuckGo)
- Other websites linking to you
- Email campaigns
Metrics per source:
- Total visitors
- Bounce rate
- Conversion rate
- Time on site
Visitor Insights
Demographics & Technology
Custom Events & Goals
Track any user interaction beyond page views:
Event Tracking
Standard event types:
Button clicks:
entrolytics.track('button_click', {
button: 'cta_signup',
location: 'hero'
});Form submissions:
entrolytics.track('form_submit', {
form: 'contact',
fields: 3
});Downloads:
entrolytics.track('file_download', {
filename: 'product-guide.pdf',
size_mb: 2.4
});Outbound links:
entrolytics.track('outbound_link', {
url: 'https://partner-site.com',
text: 'Learn More'
});Goals & Conversions
Define Your Goals
Identify what actions matter for your business:
- Newsletter signups
- Product purchases
- Demo requests
- Account creations Form submissions
Track Goal Events
// Newsletter signup goal
entrolytics.track('goal:newsletter_signup', {
source: 'footer'
})
// Purchase goal with revenue
entrolytics.track(
'goal:purchase',
{
product: 'pro_plan'
},
99.99
)View in Dashboard
Goals appear in a dedicated dashboard section:
- Conversion rate - % of visitors who complete goal
- Goal completions - Total count
- Revenue - Total from revenue goals
- Trends - Goal performance over time
Set Up Funnels
Track multi-step conversions:
// Funnel: Signup Flow
entrolytics.track('funnel:signup_started')
entrolytics.track('funnel:email_entered')
entrolytics.track('funnel:password_set')
entrolytics.track('funnel:signup_complete')Dashboard shows drop-off at each step.
Reports & Analytics
Advanced Reports
Data Export
Export data for further analysis:
- Page views and sessions
- Event data with properties
- Visitor demographics
- Revenue data
- Custom date ranges
Use in:
- Excel/Google Sheets
- Tableau, Power BI
- Custom data pipelines
- Compliance reporting
Privacy Features
Built-in Privacy Compliance
Performance
Lightweight & Fast
- Script size: < 1KB gzipped
- No dependencies: Pure JavaScript
- Async loading: Doesn't block page load
- Edge network: Global CDN for cloud users
- Request batching: Efficient data collection
Performance Metrics
| Metric | Value |
|---|---|
| Script size | 0.9 KB |
| Load time | < 50ms |
| CPU usage | < 1% |
| Memory | < 1MB |
| Requests | 1 per page view |
Impact on page speed: Negligible ✅
Next Steps
- 📊 Configure tracking - Customize your setup
- 🔧 Use the API - Build custom integrations
- 🚀 Deploy integrations - Netlify, Vercel, Shopify