From c346bd7ac23eda8be41efb1ad17eea9148ef0ab4 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Fri, 26 Jun 2026 17:50:03 +0000 Subject: [PATCH 1/3] docs: document Mixpanel data residency region option --- es/integrations/analytics/mixpanel.mdx | 21 +++++++++++++++++++++ fr/integrations/analytics/mixpanel.mdx | 21 +++++++++++++++++++++ integrations/analytics/mixpanel.mdx | 21 +++++++++++++++++++++ zh/integrations/analytics/mixpanel.mdx | 21 +++++++++++++++++++++ 4 files changed, 84 insertions(+) diff --git a/es/integrations/analytics/mixpanel.mdx b/es/integrations/analytics/mixpanel.mdx index ea950be925..d5310f96eb 100644 --- a/es/integrations/analytics/mixpanel.mdx +++ b/es/integrations/analytics/mixpanel.mdx @@ -17,6 +17,27 @@ 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). +## Residencia de datos + +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. +
## Eventos registrados diff --git a/fr/integrations/analytics/mixpanel.mdx b/fr/integrations/analytics/mixpanel.mdx index 8bf52640b4..eeeaee6a70 100644 --- a/fr/integrations/analytics/mixpanel.mdx +++ b/fr/integrations/analytics/mixpanel.mdx @@ -17,6 +17,27 @@ Ajoutez ce qui suit à votre fichier `docs.json` pour envoyer des données d' 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). +## Résidence des données + +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. +
## Événements suivis diff --git a/integrations/analytics/mixpanel.mdx b/integrations/analytics/mixpanel.mdx index e7b2d036a1..f6eca101f1 100644 --- a/integrations/analytics/mixpanel.mdx +++ b/integrations/analytics/mixpanel.mdx @@ -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 is hosted in the EU or India residency region, set `region` so events are sent directly to the matching Mixpanel ingestion host. Omit `region` to keep 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 the residency region of your Mixpanel project. Sending events to a host that doesn't match your project's region causes them to be dropped. + ## Tracked events Mintlify automatically tracks the following user interactions: diff --git a/zh/integrations/analytics/mixpanel.mdx b/zh/integrations/analytics/mixpanel.mdx index 4bf0bda973..87ca80beb4 100644 --- a/zh/integrations/analytics/mixpanel.mdx +++ b/zh/integrations/analytics/mixpanel.mdx @@ -17,6 +17,27 @@ boost: 3 将 `YOUR_MIXPANEL_PROJECT_TOKEN` 替换为你的 Mixpanel 项目 token。你可以在 [Mixpanel 项目设置](https://mixpanel.com/settings/project) 中找到该值。 +## 数据驻留 + +如果你的 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 项目所在的数据驻留区域一致。如果事件发送到与项目区域不匹配的主机,它们会被丢弃。 +
## 跟踪的事件 From 060c4da6807b054f2c73d8691ff2234890e8149a Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Fri, 26 Jun 2026 17:51:15 +0000 Subject: [PATCH 2/3] docs: wrap translated Data residency headings with anchor divs --- es/integrations/analytics/mixpanel.mdx | 4 +++- fr/integrations/analytics/mixpanel.mdx | 4 +++- zh/integrations/analytics/mixpanel.mdx | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/es/integrations/analytics/mixpanel.mdx b/es/integrations/analytics/mixpanel.mdx index d5310f96eb..59cc10042e 100644 --- a/es/integrations/analytics/mixpanel.mdx +++ b/es/integrations/analytics/mixpanel.mdx @@ -17,7 +17,9 @@ 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). -## Residencia de datos +
+ ## Residencia de datos +
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. diff --git a/fr/integrations/analytics/mixpanel.mdx b/fr/integrations/analytics/mixpanel.mdx index eeeaee6a70..b28833e28d 100644 --- a/fr/integrations/analytics/mixpanel.mdx +++ b/fr/integrations/analytics/mixpanel.mdx @@ -17,7 +17,9 @@ Ajoutez ce qui suit à votre fichier `docs.json` pour envoyer des données d' 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). -## Résidence des données +
+ ## Résidence des données +
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. diff --git a/zh/integrations/analytics/mixpanel.mdx b/zh/integrations/analytics/mixpanel.mdx index 87ca80beb4..0b595b53b9 100644 --- a/zh/integrations/analytics/mixpanel.mdx +++ b/zh/integrations/analytics/mixpanel.mdx @@ -17,7 +17,9 @@ boost: 3 将 `YOUR_MIXPANEL_PROJECT_TOKEN` 替换为你的 Mixpanel 项目 token。你可以在 [Mixpanel 项目设置](https://mixpanel.com/settings/project) 中找到该值。 -## 数据驻留 +
+ ## 数据驻留 +
如果你的 Mixpanel 项目托管在欧盟或印度的数据驻留区域,请设置 `region`,让事件直接发送到对应的 Mixpanel 接入主机。省略 `region` 将保留默认的美国主机。 From 4b6ab0854968ee0842fa74d9d74b229ebcbf1feb Mon Sep 17 00:00:00 2001 From: Ethan Palm <56270045+ethanpalm@users.noreply.github.com> Date: Fri, 26 Jun 2026 13:38:55 -0700 Subject: [PATCH 3/3] docs: fix passive voice in Mixpanel data residency section Co-Authored-By: Claude Sonnet 4.6 --- integrations/analytics/mixpanel.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integrations/analytics/mixpanel.mdx b/integrations/analytics/mixpanel.mdx index f6eca101f1..7c9ae94326 100644 --- a/integrations/analytics/mixpanel.mdx +++ b/integrations/analytics/mixpanel.mdx @@ -19,7 +19,7 @@ Replace `YOUR_MIXPANEL_PROJECT_TOKEN` with your Mixpanel project token. You can ## Data residency -If your Mixpanel project is hosted in the EU or India residency region, set `region` so events are sent directly to the matching Mixpanel ingestion host. Omit `region` to keep the default US host. +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": { @@ -36,7 +36,7 @@ Supported values: - `eu`: `api-eu.mixpanel.com` - `in`: `api-in.mixpanel.com` -Set this to match the residency region of your Mixpanel project. Sending events to a host that doesn't match your project's region causes them to be dropped. +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