Skip to content

Getting Started

First steps to start tracking analytics with Fusionaly

Welcome to Fusionaly! This guide will walk you through the essential steps to start tracking analytics on your websites.

Before you begin, make sure you have:

  • Fusionaly installed on your server (see Installation guide)
  • Admin access to your websites

Add the lightweight tracking script to your website(s). Place this script in the <head> section of your HTML:

<script defer src="https://your-domain.com/y/api/v1/sdk.js"></script>

Replace your-domain.com with the domain where you installed Fusionaly.

For optimal data collection, place the script as early as possible in the <head> section of your HTML document.

Once the tracking script is installed, access your analytics dashboard at:

https://your-domain.com/

This dashboard will show you real-time analytics data from all websites using your tracking script.

After installing the tracking script:

  1. Visit your website in a browser
  2. Check your Fusionaly dashboard
  3. You should see page views appearing in real-time
  4. The SDK automatically tracks page views, button clicks, and SPA navigation

Add data-fusionaly-event-name to any element you want to track. Buttons, links, forms — it works the same everywhere.

<button data-fusionaly-event-name="signup_clicked">Sign Up</button>
<a href="/pricing" data-fusionaly-event-name="pricing_viewed">Pricing</a>
<form data-fusionaly-event-name="contact_submitted">...</form>

Page views and button clicks are tracked automatically — no attributes needed.

  • Page Views: Every page load, every SPA navigation
  • Button Clicks: Every button, named from its text (button:submit, button:cancel, etc.)