Oppla provides comprehensive event tracking capabilities including standard events, feature flag interactions, experiment conversions, and automation triggers. All events are automatically enriched with user context, IP geolocation, and session data.
Oppla automatically batches events for performance:
Copy
// Events are automatically batched and sent every 5 seconds// or when 10 events accumulate, whichever comes first// Force immediate send (useful for critical events)window.oppla.track('critical-event', { type: 'payment_completed', amount: 999.99}, { immediate: true });