A GA4 alternative for clients who just want to see button clicks

Payload: 0.7 KB
Time to fix: 2 mins
Target: Google Analytics 4

Handing a client a GA4 login is a nightmare. They just want to know how many people clicked the Buy button or visited a landing page, but instead, they are staring at complex funnel reports and retention charts. You need an analytics engine that gives you raw, simple stats without the admin bloat.

The Edge Solution

// Fire this directly from your backend.
await fetch('https://stealth-analytics.qleapventures.com/v1/event', {
  method: 'POST',
  body: JSON.stringify({ 
    site_id: 'project_xyz',
    event_name: 'purchase_completed'
  })
});

Note: You must create a Site ID in your dashboard before firing events.

Why this works

You attach a simple onClick event to the button that fires a silent POST request to the edge. The dashboard only displays the exact events you push to it. No auto generated funnels and no confusing admin menus. Just a clean, brutalist log of the metrics they asked for.

Stop losing backend events.

Track anything that can make a POST request.

Start Free Now

Explore More Core Analytics Guides