Analytics
The same script tag is the analytics tag — no extra markup at all. Every page of this site is already reporting pageviews, referrers, device info, and session data. Results appear in the tenant's Analytics tab in mpf-admin and on the customer portal's Analytics page.
Live demo — custom events
Events batch in the browser and ship at most every 10 seconds via sendBeacon — check the Network tab, then the dashboards a moment later.
The entire analytics install
<script async src="https://api.mypixelforge.io/embed/v1/mpf.js" data-site="blueprint-site"></script>Optional · custom events from your own code
mpf('track', 'quote_requested', { plan: 'pro' });Optional · honor Do Not Track
<script async src="https://api.mypixelforge.io/embed/v1/mpf.js" data-site="blueprint-site" data-respect-dnt="true"></script>Never slows the site.The script loads async, events batch and ship fire-and-forget via sendBeacon. If the platform is unreachable, events are dropped silently — the customer's page never stutters or retries.
Never overloads the server. Batched requests, per-IP rate limits, a per-tenant daily cap, and a queue-depth breaker — ingest sheds load before it can touch forms or auth.
Privacy-lean by default. The visitor id is random and rotates daily — no persistent cross-day tracker. When someone signs in through the auth widget, their events link to that member, so user-level data exists exactly where users do.