Skip to main content
Version: 3.xx.xx

Telemetry

Summary

refine implements a simple and transparent telemetry module for collecting usage statistics defined in a very limited scope.

Tracking is totally secure and anonymous. It includes no personally identifiable information and does not use cookies. Participation is optional and users may easily opt-out.

Why do we need this?

We try to answer the question how many users are actively using the Refine framework. This information is critical for open-source projects like Refine to better understand their communities and measure their growth metrics.

How do we collect data?

The tracking happens when a Refine application is loaded on the user's browser. On application init, a single HTTP request is sent to "https://telemetry.refine.dev". The request body is encoded with Base64 to be decoded on Refine servers.

There are no consequent requests for that session, as we do NOT collect any behavioral information such as page views, button clicks, etc.

What is collected?

The HTTP call has a JSON payload having the following application-specific attributes:

ValueTypeDescription
providersboolean[]List of providers used in the project (auth, data, router, live, notification, auditLog, i18n or accessControl)
versionstringVersion of the refine package.
resourceCountnumberNumber of total resources.

Additionally, the following information is extracted and collected from the HTTP header:

ValueDescription
IP AddressIP Address of the machine the request is coming from.
HostnameHostname of the machine the request is coming from.
BrowserBrowser and browser version.
OSOS and OS version.

How to opt-out?

You can opt out of telemetry by simply adding disableTelemetry prop to the <Refine /> component.