Skip to content

Getting Started

First steps to start tracking analytics with Fusionaly

This guide covers your first steps with Fusionaly.

Before you begin, make sure you have:

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

Add the tracking script to your website. 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.

Place the script as early as possible in <head>. This gives you the most complete data.

After you install the tracking script, open your dashboard at:

https://your-domain.com/

The dashboard shows real-time data from every website that uses your tracking script.

After you install the tracking script:

  1. Visit your website in a browser.
  2. Check your Fusionaly dashboard.
  3. Page views appear in real time.
  4. The SDK tracks page views, button clicks, and SPA navigation on its own.

Add data-fusionaly-event-name to any element you want to track. Use it on buttons, links, and forms. It works the same way 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>

Fusionaly tracks page views and button clicks on its own. You do not need attributes for these.

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