Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions es/integrations/analytics/mixpanel.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,29 @@ Agrega lo siguiente a tu archivo `docs.json` para enviar datos de analítica a M

Reemplaza `YOUR_MIXPANEL_PROJECT_TOKEN` por el token de tu proyecto de Mixpanel. Puedes encontrarlo en la [configuración de tu proyecto de Mixpanel](https://mixpanel.com/settings/project).

<div id="data-residency">
## Residencia de datos
</div>

Si tu proyecto de Mixpanel está alojado en la región de residencia de datos de la UE o India, define `region` para que los eventos se envíen directamente al host de ingesta de Mixpanel correspondiente. Omite `region` para mantener el host de EE. UU. por defecto.

```json Mixpanel con residencia de datos en la UE
"integrations": {
"mixpanel": {
"projectToken": "YOUR_MIXPANEL_PROJECT_TOKEN",
"region": "eu"
}
}
```

Valores admitidos:

- `us` (por defecto): `api.mixpanel.com`
- `eu`: `api-eu.mixpanel.com`
- `in`: `api-in.mixpanel.com`

Configura este valor para que coincida con la región de residencia de tu proyecto de Mixpanel. Si envías eventos a un host que no coincide con la región de tu proyecto, se descartarán.


<div id="tracked-events">
## Eventos registrados
Expand Down
23 changes: 23 additions & 0 deletions fr/integrations/analytics/mixpanel.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,29 @@ Ajoutez ce qui suit à votre fichier `docs.json` pour envoyer des données d&#39

Remplacez `YOUR_MIXPANEL_PROJECT_TOKEN` par votre jeton de projet Mixpanel. Vous le trouverez dans les paramètres de votre projet Mixpanel : [Mixpanel project settings](https://mixpanel.com/settings/project).

<div id="data-residency">
## Résidence des données
</div>

Si votre projet Mixpanel est hébergé dans la région de résidence des données UE ou Inde, définissez `region` pour que les événements soient envoyés directement à l'hôte d'ingestion Mixpanel correspondant. Omettez `region` pour conserver l'hôte américain par défaut.

```json Mixpanel avec résidence des données en UE
"integrations": {
"mixpanel": {
"projectToken": "YOUR_MIXPANEL_PROJECT_TOKEN",
"region": "eu"
}
}
```

Valeurs prises en charge :

- `us` (par défaut) : `api.mixpanel.com`
- `eu` : `api-eu.mixpanel.com`
- `in` : `api-in.mixpanel.com`

Définissez cette valeur pour qu'elle corresponde à la région de résidence de votre projet Mixpanel. Si vous envoyez des événements à un hôte qui ne correspond pas à la région de votre projet, ils seront supprimés.


<div id="tracked-events">
## Événements suivis
Expand Down
21 changes: 21 additions & 0 deletions integrations/analytics/mixpanel.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,27 @@ Add the following to your `docs.json` file to send analytics to Mixpanel.

Replace `YOUR_MIXPANEL_PROJECT_TOKEN` with your Mixpanel project token. You can find this in your [Mixpanel project settings](https://mixpanel.com/settings/project).

## Data residency

If your Mixpanel project uses EU or India data residency, set `region` so Mintlify sends events directly to the matching Mixpanel ingestion host. Omit `region` to use the default US host.

```json Mixpanel with EU data residency
"integrations": {
"mixpanel": {
"projectToken": "YOUR_MIXPANEL_PROJECT_TOKEN",
"region": "eu"
}
}
```

Supported values:

- `us` (default): `api.mixpanel.com`
- `eu`: `api-eu.mixpanel.com`
- `in`: `api-in.mixpanel.com`

Set this to match your Mixpanel project's data residency region. If the host doesn't match your project's region, Mixpanel drops the events.

## Tracked events

Mintlify automatically tracks the following user interactions:
Expand Down
23 changes: 23 additions & 0 deletions zh/integrations/analytics/mixpanel.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,29 @@ boost: 3

将 `YOUR_MIXPANEL_PROJECT_TOKEN` 替换为你的 Mixpanel 项目 token。你可以在 [Mixpanel 项目设置](https://mixpanel.com/settings/project) 中找到该值。

<div id="data-residency">
## 数据驻留
</div>

如果你的 Mixpanel 项目托管在欧盟或印度的数据驻留区域,请设置 `region`,让事件直接发送到对应的 Mixpanel 接入主机。省略 `region` 将保留默认的美国主机。

```json 在欧盟数据驻留区域使用 Mixpanel
"integrations": {
"mixpanel": {
"projectToken": "YOUR_MIXPANEL_PROJECT_TOKEN",
"region": "eu"
}
}
```

支持的取值:

- `us`(默认):`api.mixpanel.com`
- `eu`:`api-eu.mixpanel.com`
- `in`:`api-in.mixpanel.com`

请将该值设置为与你的 Mixpanel 项目所在的数据驻留区域一致。如果事件发送到与项目区域不匹配的主机,它们会被丢弃。


<div id="tracked-events">
## 跟踪的事件
Expand Down
Loading