2024-01-08 18:06:32 +00:00
|
|
|
---
|
|
|
|
sidebar_position: 1
|
|
|
|
---
|
|
|
|
|
2024-04-11 03:41:53 +00:00
|
|
|
# Tracker Script
|
2024-01-08 18:06:32 +00:00
|
|
|
|
2024-04-11 03:41:53 +00:00
|
|
|
## Installation
|
2024-01-08 18:06:32 +00:00
|
|
|
|
2024-04-11 03:41:53 +00:00
|
|
|
To track website events, you just need inject a simple script(< 2 KB) into your website.
|
2024-01-08 18:06:32 +00:00
|
|
|
|
|
|
|
the script look like below:
|
|
|
|
|
|
|
|
```html
|
|
|
|
<script async defer src="https://<your-self-hosted-domain>/tracker.js" data-website-id="xxxxxxxxxxxxx"></script>
|
|
|
|
```
|
|
|
|
|
2024-03-03 09:05:46 +00:00
|
|
|
you can get this script code from your **Tianji** website list
|
2024-01-08 18:06:32 +00:00
|
|
|
|
|
|
|
## Report Event
|
|
|
|
|
2024-03-03 09:05:46 +00:00
|
|
|
**Tianji** provide a simple way to report user click event, its easy to help you track which action user like and often to use.
|
2024-01-08 18:06:32 +00:00
|
|
|
|
2024-03-03 09:05:46 +00:00
|
|
|
This is a very common method in website analysis. You can use it quickly get it by using **Tianji**.
|
2024-01-08 18:06:32 +00:00
|
|
|
|
|
|
|
After you inject script code into your website, you just need add a `data-tianji-event` in dom attribute.
|
|
|
|
|
|
|
|
for example:
|
|
|
|
|
|
|
|
```html
|
|
|
|
<button data-tianji-event="submit-login-form">Login</button>
|
|
|
|
```
|
|
|
|
|
|
|
|
Now, when user click this button, your dashboard will receive new event
|
2024-03-21 16:04:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
## Modify default script name
|
|
|
|
|
|
|
|
> This feature available on v1.7.4+
|
|
|
|
|
|
|
|
You can use environment `CUSTOM_TRACKER_SCRIPT_NAME` when you start it
|
|
|
|
|
|
|
|
for example:
|
|
|
|
```
|
|
|
|
CUSTOM_TRACKER_SCRIPT_NAME="my-tracker.js"
|
|
|
|
```
|
|
|
|
|
|
|
|
then you can visit your tracker script with `"https://<your-self-hosted-domain>/my-tracker.js"`
|
|
|
|
|
|
|
|
This is to help you avoid some ad-blockers.
|
|
|
|
|
|
|
|
You do not need the `.js` suffix. It can be any path you choose, even you can use as `CUSTOM_TRACKER_SCRIPT_NAME="this/is/very/long/path"`
|
2024-04-11 03:41:53 +00:00
|
|
|
|
|
|
|
## Tracking Specified Domains Only
|
|
|
|
|
|
|
|
Generally the tracker will report all events wherever your site is running. But sometimes we need to ignore events like `localhost`.
|
|
|
|
|
|
|
|
Tianji provides an attribute of the tracker script to do that.
|
|
|
|
|
|
|
|
You can add `data-domains` into your script. The value should be your root domains to track. Use `,` to separate multiple domains.
|
|
|
|
|
|
|
|
```html
|
|
|
|
<script async defer src="https://<your-self-hosted-domain>/tracker.js" data-website-id="xxxxxxxxxxxxx" data-domains="website.com,www.website.com"></script>
|
|
|
|
```
|
|
|
|
|
|
|
|
Then you can just see the events from these domains.
|