Versionv1

Intastellar Analytics

Intastellar Analytics is a privacy-first analytics platform built for consent-aware data collection. It tracks visitor behaviour, conversions, and form interactions across two consent tiers: minimal (anonymous, no personal data) and full (enriched, session-linked). All data stays within your organisation; nothing is sold or shared.

1. Installation

Add one script tag to the <head> or end of <body> of every page you want to track. Replace YOUR_SITE_KEY with the key shown in your dashboard under Settings → Analytics Script.

<script
  src="https://analytics.consentsmanagement.com/api/a"
  data-site="YOUR_SITE_KEY"
  async
  defer
></script>

Pageviews, form interactions, scroll depth, and rage clicks are tracked automatically from this point.

The embed reads consent state from the Intastellar Consent Solution cookie (IntastellarConsentSolution) or from window.intaCookieConsents if you manage consent yourself.

TierTriggerData collected
MinimalNo consent requiredAnonymous pageview data only — no session ID, no personal identifiers
FullVisitor grants Statistics consentSession ID, UTMs, click IDs (gclid / msclkid / fbclid), referrer, screen size, language, timezone, duration, scroll depth, heatmap clicks

3. Auto-Tracked Events

The embed fires the following events automatically. No window.inta.track call is needed.

EventTriggerPayload fields
pageviewEvery page load or SPA navigationpath, title, referrer, device
scroll_depthAt 25%, 50%, 75%, 90%, 100% scrolldepth (percentage)
rage_click3+ clicks within 500 ms / 30 px radiusselector, id, cls, tag
form_startedFirst field focus inside any <form>formId, provider
form_submitNative form submit eventformId, fields[], fieldCount, action
form_field_focusUser moves to a new field (deduped per field per form)formId, field, fieldType
form_errorHTML5 validation failure, network error, or server error (4xx/5xx)formId, errorType, field, message
video_play<video> playsrc, duration
video_pause<video> pausesrc, at
video_50pct50% of video watchedsrc
video_completeVideo endedsrc, duration
content_copyUser copies text (Ctrl+C / Cmd+C)length

4. Custom Events

Send custom events with window.inta.track:

window.inta.track('purchase', {
  value: 49.99,
  currency: 'EUR',
  transactionId: 'order_1234',
  data: { plan: 'pro' },
  products: [
    { id: 'prod_abc', name: 'Pro Plan', price: 49.99, quantity: 1 },
  ],
});
ParameterTypeDescription
eventNamestringRequired. Lowercase, snake_case recommended. Max 64 chars.
options.valuenumberMonetary value (e.g. 49.99). Used in conversion reporting.
options.currencystringISO 4217 currency code ("EUR", "USD", "GBP").
options.transactionIdstringDeduplication key. Same ID within a session is stored once.
options.dataobjectArbitrary key-value metadata. Max 20 keys, 500 chars per value.
options.productsarrayProduct list for e-commerce events.

5. Form Provider Integrations

Third-party form providers are detected automatically via their native postMessage events. No extra configuration is needed.

ProviderDetection mechanism
HubSpotwindow.postMessage (hsFormCallback)
Typeformwindow.postMessage
Calendlywindow.postMessage
Tallywindow.postMessage

The provider field on form_started and form_submit events reflects which provider was detected, or "native" for standard HTML forms.

6. Form Error Types

The errorType field on form_error events takes one of three values:

TypeWhen it fires
validationHTML5 validation rejected a field (fires on native invalid event)
serverHTTP 4xx or 5xx response to a form submission fetch / XHR
networkFetch or XHR failed with no response (offline, DNS failure, etc.)

7. UTM and Click ID Capture

The embed reads the following parameters from the landing page URL on first load and attaches them to the session (full consent tier only).

ParameterSource
utm_source, utm_medium, utm_campaign, utm_contentURL query string
gclidGoogle Ads
msclkidMicrosoft Advertising
fbclidMeta Ads

8. Server-Side Fields

The following fields are added server-side to every event record before storage.

FieldTypeNotes
site_idUUIDResolved from your site key
received_attimestampUTC, server-side
consent_level"minimal" | "full"Set by the embed
pathnamestringURL path without query string
page_hoststringHostname (e.g. app.yoursite.com)
device_type"desktop" | "mobile" | "tablet"Derived from user-agent
country_codeISO 3166-1 alpha-2GeoIP lookup, server-side
session_idstring | nullFull consent only

Dashboard panels

Live event feed

A rolling feed showing the last 30 minutes of events in real time. Use it to confirm that tracking is working after a deployment or consent configuration change without waiting for batch-processed reports.

Audience

Session quality, new versus returning, and country breakdown. Sessions are split between full (marketing-consented) and declined so the audience view reflects real consent distribution rather than aggregating across consent states.

Acquisition

First-touch and first-party attribution events. Acquisition data is captured via first-party mechanisms, so it is not affected by consent decisions — you get complete acquisition data regardless of whether a visitor accepted or declined the marketing category.

Ad Spend

Spend, clicks, impressions, and CPC from connected ad platforms. Data is pulled daily via API from each connected platform, so spend figures land in the dashboard without requiring manual uploads or tag-based measurement.

Attribution

Per-channel cost with both first-touch and last-touch models side by side. Compare how each channel looks under each model to understand where your budget drives initial discovery versus final conversion.

Conversions

Funnel analysis showing exactly where visitors drop off at each step. Each stage is labelled so you can identify the specific point in the funnel where drop-off is highest and act on it.

Heatmap

Click and scroll heatmaps by page. Shows where visitors interact and how far they scroll, letting you validate CTA placement and page layout decisions against real behaviour data.

User Flow

A Sankey diagram of the paths visitors take through your site — entry points, intermediate pages, and exit points. Use it to identify unexpected navigation paths and pages that act as dead ends.

Search Console

Google Search Console data pulled directly into the dashboard: clicks, impressions, CTR, average position, and top queries by page. No separate login to Search Console is needed for day-to-day review.

Bots

Crawler traffic is automatically separated from real visitor traffic and excluded from all other panels. The bot panel breaks down crawler activity by category — search tools and data aggregators — so you can audit what is crawling your site without it inflating real-user metrics.

Last updated