adora-unmask
.
adora-mask
.
adora-block
.
adora-mask
CSS class to the HTML element. For example:
adora-unmask
CSS class to unmask input fields. For example:
adora-block
CSS class to an element to block its content.
For example:
/private-section/*
blocks direct pages under private-section (like /private-section/page1)/private-section/**
blocks all pages under private-section, including deeply nested ones (like /private-section/accounts/user/settings)/page/uuid1
, /page/uuid2
, and /page/uuid3
are aggregated into /page/*
in the UI. By default, this aggregation occurs server-side, meaning the full path (e.g., /page/uuid1
) is sent to Adora.
If sending full paths is not desirable—e.g., when paths include sensitive data like uuid1
—you can define client-side grouping rules using regex patterns. These rules allow Adora to strip or group paths before they are sent to the server. For example, you could provide the rule /page/*
to ensure all such URLs are captured as /page/*
.
/signup?step=1
. By default, Adora would treat all such pages as /signup
. To distinguish between steps, you can explicitly allow specific query parameters, such as step
, to be captured.
window.adoraStop()
anytime.
You can verify that Adora has been stopped capturing events by verifying that no requests being sent to /sessions/SESSION_ID/events
in the “Network” tab.
The snippet will not capture any events until window.adoraStart()
has been called again.