From 9a2a1dd680739d9d6be53cdff52b784735e5dd50 Mon Sep 17 00:00:00 2001 From: Brie Date: Thu, 9 Jan 2020 12:27:18 -0800 Subject: [PATCH 1/2] Add docs re Mixpanel EU Endpoint Support --- .../destinations/catalog/mixpanel/index.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/connections/destinations/catalog/mixpanel/index.md b/src/connections/destinations/catalog/mixpanel/index.md index 81bcd1a50c..3f69c37006 100644 --- a/src/connections/destinations/catalog/mixpanel/index.md +++ b/src/connections/destinations/catalog/mixpanel/index.md @@ -376,6 +376,22 @@ analytics.track(user_id=user.id, Please provide `context.ip` to all your [`identify`](/docs/connections/spec/identify/), [`track`](/docs/connections/spec/track/), and [`alias`](/docs/connections/spec/alias/) calls to make sure Mixpanel doesn't geo-locate your users. +### Sending data to Mixpanel's European Union Endpoint + +If you'd like to implement Mixpanel in the European Union you will need to enable the setting "Enable European Union Enpoint" within the Mixpanel settings in the app. When this setting is enabled, Segment will automatically update the endpoint for any data sent from one of our server-side libraries or from a browser using Analytics.js or the iOS SDK. + +If you are sending data using our Android SDK, you will need to specify the different endpoints using meta-data tags. On your app's `AndroidManifest.xml` file, you need to add the following tags under your `` tags to override the track, engage, and group endpoints: +``` + + + +``` + +For additional information regarding Mixpanel's European Union endpoint, please see the [Mixpanel documentation here](https://developer.mixpanel.com/docs/implement-mixpanel#section-implementing-mixpanel-in-the-european-union-eu). + ## Troubleshooting ### When Will I See Data from my Mobile App? From 48177f542e37add321971ea7cd313593b95b56ac Mon Sep 17 00:00:00 2001 From: Brie McNally <31782219+briemcnally@users.noreply.github.com> Date: Thu, 9 Jan 2020 12:31:03 -0800 Subject: [PATCH 2/2] Update src/connections/destinations/catalog/mixpanel/index.md Co-Authored-By: LRubin --- src/connections/destinations/catalog/mixpanel/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connections/destinations/catalog/mixpanel/index.md b/src/connections/destinations/catalog/mixpanel/index.md index 3f69c37006..7cba73574e 100644 --- a/src/connections/destinations/catalog/mixpanel/index.md +++ b/src/connections/destinations/catalog/mixpanel/index.md @@ -381,7 +381,7 @@ Please provide `context.ip` to all your [`identify`](/docs/connections/spec/iden If you'd like to implement Mixpanel in the European Union you will need to enable the setting "Enable European Union Enpoint" within the Mixpanel settings in the app. When this setting is enabled, Segment will automatically update the endpoint for any data sent from one of our server-side libraries or from a browser using Analytics.js or the iOS SDK. If you are sending data using our Android SDK, you will need to specify the different endpoints using meta-data tags. On your app's `AndroidManifest.xml` file, you need to add the following tags under your `` tags to override the track, engage, and group endpoints: -``` +```xml