Skip to content

Privacy & Data

The Trackelio widget captures contextual data alongside user submissions to help your team understand and reproduce issues. This page documents exactly what is collected and the safeguards in place.

Every submission includes metadata about the page the user was on:

DataDescription
URLThe full page URL at the time of submission.
TitleThe document title.
ReferrerThe referring URL, if available.
ViewportThe browser viewport dimensions (width and height).
Scroll positionHow far down the page the user had scrolled.
DataDescription
Browser namee.g., Chrome, Firefox, Safari.
Browser versionThe specific version number.
Operating systeme.g., Windows, macOS, Linux, iOS, Android.
User agentThe full user agent string.

A UUID is generated and stored in localStorage to maintain session continuity across page reloads and navigations. This token is not tied to any personal information unless the user is explicitly identified via the SDK identify() method.

If the user selects an element using Mark Mode, the submission includes the CSS selector, XPath, bounding rectangle, and click coordinates for that element. See Visual Feedback for details.

The widget captures the last 50 console log entries at the time of submission.

FieldDescription
LevelThe log level (log, warn, error, info).
MessageThe logged message content.
TimestampWhen the log entry was created.

Trackelio’s own internal console output is excluded from this capture.

The widget captures the last 30 failed network requests (non-2xx responses) at the time of submission.

FieldDescription
MethodHTTP method (GET, POST, etc.).
URLThe request URL.
StatusThe HTTP status code returned.
DurationHow long the request took in milliseconds.

Requests made to Trackelio’s own API are excluded from this capture.

Password input fields (<input type="password">) are automatically excluded from screenshot captures. Their values are never read or transmitted.

Add the data-sensitive attribute to any HTML element to block it from being captured in screenshots:

<div data-sensitive>
Sensitive content hidden from screenshots.
</div>

The widget’s own DOM subtree is excluded from screenshot captures so it does not appear in the image.

The widget renders inside a Shadow DOM root. This provides CSS isolation between your site and the widget, preventing style conflicts in either direction.

Users or your application can clear all stored session data at any time:

window.Trackelio.reset();

This removes the session token from localStorage, clears the identified user, and closes the widget panel.