title | hide-cmodes | maintenance | id |
---|---|---|---|
Amplitude Destination |
true |
true |
54521fd525e721e32a72ee91 |
Amplitude{:target="_blank"} is an event tracking and segmentation platform for your web and mobile apps. By analyzing the actions your users perform, you can gain a better understanding to drive retention, engagement, and conversion.
Segment's Amplitude destination code is open source and available on GitHub. You can view these repositories:
- Android{:target="_blank"}
- iOS{:target="_blank"}
- JavaScript{:target="_blank"}
- Kotlin{:target="_blank"}
- Swift{:target="_blank"}
In addition to Segment's Amplitude documentation, Amplitude provides a Segment integration guide{:target="_blank"}, as well.
info "Secret key required for GDPR deletions" To delete users based on GDPR regulations, you must include a secret key in the Secret Key setting of every Amplitude destination. You can find your Secret Key on the General Settings{:target="_blank"} of your Amplitude project.
{% include components/reference-button.html href="https://segment.com/recipes/amplitude-historical-count-analysis/" icon="media/academy.svg" title="Identify high-value users with Historical Count analysis" description="Examine the exact moment in the customer journey that converts new users into high-value customers." %}
success "" Good to know: This page is about the Amplitude Segment destination, which receives data from Segment. There's also a page about the Amplitude Engage Segment source, which sends data to Segment.
-
From the Segment web app, navigate to Connections > Destinations and click Add Destination.
-
Search for Amplitude select it.
-
Choose which sources to connect the destination to.
-
In the destination settings, enter your Amplitude API key.
You can find your Amplitude API key in the Amplitude project settings{:target="_blank"} . It is a 32-character string of numbers and letters. Locate the project you want to receive your Segment data, copy that project's API key, and paste it into your Amplitude destination settings in Segment.
If you included Segment's JavaScript snippet on your page, then Amplitude's SDK loads on your page automatically and you can use Segment's to begin sending events right away.
If you're not familiar with the Segment Specs, take a look to understand what the Page and Screen methods do. By default, Segment does not send these standard calls to Amplitude. However, you can enable them with the destination settings below, which you can find under the "Optional Settings" tab.
The example below shows a Page call from a server library.
analytics.page({
userId: "some_user_id", // if using A.js client-side, you can leave out the `userId`
category: "Merchant",
name: "Settings",
})
The next example shows a call from a mobile library, which uses the Screen call instead of the Page call.
// Note: screen calls are only for mobile. you can't make them from A.js client-side.
analytics.screen({
userId: "some_user_id",
category: "Merchant",
name: "Settings",
})
Page and Screen calls have two important properties: a page name, such as "Settings", and a category, such as "Merchant". How you pass these properties depends on which Segment library you use. Segment determines when to send events to Amplitude based on the settings you enable, and whether the call has a name or category included.
warning "" If you enable more than one of the following settings, Segment might send multiple events for the same call.
If you use Analytics.js (in either device- or cloud-mode), a mobile library in cloud-mode, or a Segment server library, the following settings are available. (Additional settings are available only for iOS and Android sources that send in device-mode.)
Setting Name | When events are sent to Amplitude | Amplitude Event Name | Example for {"name": "Settings", "category": "Merchant" } |
---|---|---|---|
Track Named Pages | A page /screen name is provided |
Loaded/Viewed (Category) (Name) Page/Screen | "Loaded Merchant Settings Page" |
Track Categorized Pages | A page /screen category is provided |
Loaded/Viewed (Category) Page/Screen | "Loaded Merchant Page" |
Track All Pages | Always | Loaded/Viewed a Page/Screen | "Loaded a Page" |
Before you choose a setting, read about the Amplitude event type volume considerations.
When you use the Track Named Pages or Track Categorized Pages settings, Segment sends a Page or Screen call that includes the name or category. This option stores the page and screen name as a top-level event type. However, Amplitude limits the number of distinct event types per project{:target="_blank"}. Each unique Page and Screen name, Page and Screen category, and Track event counts towards the event type limit. Anything past the instrumentation limit is not visualized in Amplitude.
When you use the Track All Pages setting, Segment sends a Loaded a Page
event type to Amplitude. When you use the generic event name, it is applied to all Page and Screen calls, so you don't hit the event type limit in your project in Amplitude. The page or screen name is still available as an attribute of the Loaded a Page
event, and you can query it as an event property. The Loaded a Page
event is counted as one event type, and Amplitude does not place any limits on the number of unique event property values in Amplitude.
success "" Tip: These settings also apply to mobile Cloud-mode connections.
The following settings are available on iOS for device-mode connections.
| Setting Name | When events will be sent to Amplitude | Amplitude Event Name | Example for {"name": "Settings", "category": "Merchant" }
|
| ----------------- | ------------------------------------- | -------------------- |
| Track All Pages | Always | Viewed (Name) | "Viewed Settings" |
| Track All Screens | Always | Loaded a Screen | "Loaded a Screen" |
When enabled, the "Track All Screens" setting includes the screen name and category as event properties, where the "Track All Pages" omits them. Most iOS implementations should use "Track All Screens".
The following settings are available on Android for device-mode connections.
Setting Name | When events will be sent to Amplitude | Amplitude Event Name | Example for {"name": "Settings", "category": "Merchant" } |
---|---|---|---|
Track Named Pages | A screen name is provided |
Viewed (Category) (Name) Screen | "Viewed Merchant Settings Screen" |
Track Categorized Pages | A screen category is provided |
Viewed (Category) Screen | "Viewed Merchant Screen" |
Track All Pages | Always | If a screen name is provided: Viewed (Name) Screen . Otherwise Loaded a Screen |
"Viewed Settings Screen" |
Track All Screens | Always | Loaded a Screen | "Loaded a Screen" |
You can learn more about Page calls from the Page spec and Screen calls from the Screen spec.
If you're not familiar with the Segment Specs, take a look to understand what the Identify method does. An example call would look like:
// On server-side
analytics.identify({
"userId": "123",
"anonymousId": "a80b66d5-b86d-41bd-866f-fe04ee7841af",
"traits": {
"email": "[email protected]",
"name": "Derek Sivers",
"industry": "Music"
}
})
// On client-side
analytics.identify({
"email": "[email protected]",
"name": "Derek Sivers",
"industry": "Music"
})
When you make an Identify call, Segment uses the userId
you provide to set the User Id in Amplitude{:target="_blank"}, and sets any traits
you provide as Amplitude custom user_properties
.
To have Amplitude recognize an anonymous user and a known or logged-in user, make sure you include both the user's userId
and the anonymousId
they had before that in your Identify call. If you don't include the anonymousId
, Amplitude can't tell that the anonymous user is the same person as the logged-in user.
If you're using a Segment server library or the Segment HTTP API, you must explicitly include both anonymousId
and userId
. If you're using Analytics.js in device-mode, or a bundled SDK, Segment automatically includes anonymousId
for you.
You can set the Device ID in slightly different ways depending on the library and connection mode you're using (Device-mode vs Cloud-mode).
The table below represents default behavior.
Library | Default | Fallback |
---|---|---|
A.js | Generated by Amplitude] | anonymousId |
Server-side | context.device.id |
anonymousId |
iOS | Generated by Amplitude | n/a |
Android | Generated by Amplitude | n/a |
If you're using the "Prefer Anonymous ID for Device ID" setting in client-side, server-side, or a mobile library with Cloud-mode enabled, the following rules apply.
Library | Default | Fallback |
---|---|---|
A.js | anonymousId |
Generated by Amplitude |
Server-side | anonymousId |
context.device.id |
This option is not currently available for mobile libraries using cloud-mode.
If you're using the "Prefer Advertising ID for Device ID" setting with one of our bundled mobile SDKs, the following rules apply.
Library | Default | Fallback |
---|---|---|
iOS | anonymousId |
[Generated by Amplitude |
Android | anonymousId |
[Generated by Amplitude |
If you have multiple settings enabled, one setting or value can take priority of another. This table lists which settings, if enabled, take priority over other settings or values.
Library | Priority (highest to lowest) |
---|---|
A.js | Prefer Anonymous ID for Device ID Set Device ID From URL Parameter amp_device_id (Device-mode only) Device ID Generated by Amplitude |
Server-side | Prefer Anonymous ID for Device ID context.device.id |
iOS | Use AdvertisingId for Device ID (Device-mode only) Device ID Generated by Amplitude |
Android | Use AdvertisingId for Device ID (Device-mode only) Device ID Generated by Amplitude |
For Amplitude to associate both device-mode and cloud-mode activity with the
same user, you must pass the same deviceID
to Amplitude. Otherwise,
Amplitude creates two users - one for each of the deviceID
's set per the functionality outlined in the tables above.
You can get the deviceID
from Amplitude in device-mode so you can return it on cloud-mode calls. The example method below shows how you could log the deviceId
in the
ready
function on the device, so you could send it to the server.
analytics.ready(function() {
// Instead of console.log(...), you probably want to do upload_to_server(...)
// or something to that effect.
console.log(amplitude.getInstance().options.deviceId);
});
When a user logs in, be sure to send the same Amplitude deviceID
in your Identify call. Otherwise, Amplitude creates two separate users: one for your anonymous user, and another for your logged-in user. This is handled automatically on mobile.
If you're not familiar with the Segment Specs, take a look to understand what the Track method does. Amplitude supports several special properties, all of which are included in the following example:
// On server-side
analytics.track({
"userId": "123",
"event": "Subscription Started",
"properties": {
"plan": "Basic",
"revenue": "32"
},
"context": {
"ip": "8.8.8.8",
"device": {
"id": "2b6f0cc904d137be2e1730235f5664094b831186",
"model": "iPhone 10",
"brand": "Apple",
"manufacturer": "Apple"
},
"os": {
"name": "iOS",
"version": "9.1"
},
"network": {
"carrier": "T-Mobile"
},
"app": {
"version": "3.5.1"
},
"location": {
"country": "United States",
"region": "California",
"city": "San Francisco",
"latitude": "37.7672319",
"longitude": "-122.4021353"
},
"locale": {
"language": "en-us"
}
}
})
Segment sends many of these properties automatically if you use Analytics.js, Segment's iOS source, or Segment's Android source.
For a complete list of special context
keys see Segment's Common fields spec.
Segment's iOS and Android sources can send revenue using Amplitude's preferred logRevenueV2
method. Segment sets Amplitude's special revenue properties, such as revenueType
and productIdentifier
, which are used in Amplitude's Revenue Analysis and Revenue LTV charts. Segment uses the Amplitude eventProperties
field to send any properties not mapped to Amplitude's special properties.
Amplitude Property | Segment Property | Description |
---|---|---|
productId |
productId |
An identifier for the product. |
quantity |
quantity |
The quantity of products purchased. Note: revenue = quantity * price . |
price |
price or revenue (or total for mobile, see note below) |
The price of the products purchased, and this can be negative. |
revenueType |
revenueType |
The type of revenue (e.g. tax, refund, income). |
receiptSignature |
receiptSignature (Android only) |
The receipt signature. |
receipt |
receipt |
This is required if you want to verify the revenue event. |
eventProperties |
Any remaining properties | A NSDictionary or Map of event properties to include in the revenue event. |
Property names should be camelCase
for Android implementations, and snake_case
for iOS implementations.
info "" Amplitude doesn't support currency conversion{:target="_blank"} Normalize all revenue data to your currency of choice before sending it to Amplitude.
For Segment's Analytics.js (device-mode), iOS, and Android sources, if you do not enable the preferred logRevenueV2
setting, Segment sends the data using the deprecated logRevenue
methods (which still work). If you record events using this old setting, fields such as revenueType
aren't recorded in your events. This can reduce your ability to segment on those revenue events in the Amplitude platform.
Amplitude Property | Segment Property | Description |
---|---|---|
productId |
productId |
An identifier for the product. |
quantity |
quantity |
The quantity of products purchased. Note: revenue = quantity * price . |
price |
price (or revenue or total , see note below) |
The price of the products purchased, and this can be negative. |
receipt |
receipt (mobile only) |
This is required to verify the revenue event. |
receiptSignature |
receiptSignature (Android only) |
The receipt signature. |
revenueType |
revenueType (cloud-mode only) |
The type of revenue (such as tax, refund, income). |
revenue |
revenue (cloud-mode only) |
The revenue collected. |
eventProperties |
Any remaining properties (cloud-mode only) | A NSDictionary or Map of event properties to include in the revenue event. |
In Segment's Analytics.js, iOS and Android sources, if properties.price
isn't present, Segment falls back to revenue
and sends that as price
. The Segment iOS and Android sources also do an additional fallback to total
, if revenue
isn't present either.
success "" Tip If your site allows users to perform a single transaction with multiple products (such as a shopping cart checkout), Segment recommends that you use an Order Completed event to track revenue with Amplitude.
Segment recommends that you use the Order Completed event to track revenue with Amplitude. This event allows you to define a list of products that a user purchased in a single transaction, which is the best way to track purchases for sites that have a shopping cart system.
You can currently use this event only for data coming from a server or web source. An Order Completed
event from mobile using our bundled Amplitude integration
will work the same as our standard track
event documented above.
Here's an example of how you'd create an "Order Completed" event:
analytics.track({
"userId": "e953c39d2597f0b8a79dd3c407baeb13bb58523a",
"event": "Order Completed",
"properties": {
"checkoutId": "6727142daf49b93a601d3a31bc3d53aeae1d15ab",
"orderId": "50314b8e9bcf000000000000",
"affiliation": "Google Store",
"total": 30,
"revenue": 25,
"shipping": 3,
"tax": 2,
"discount": 2.5,
"coupon": "hasbros",
"currency": "USD",
"products": [
{
"productId": "507f1f77bcf86cd799439011",
"sku": "45790-32",
"name": "Monopoly: 3rd Edition",
"price": 19,
"quantity": 1,
"category": "Games"
},
{
"productId": "505bd76785ebb509fc183733",
"sku": "46493-32",
"name": "Uno Card Game",
"price": 3,
"quantity": 2,
"category": "Games"
}
]
}
})
When you send an "Order Completed" event, an "Order Completed" event appears in Amplitude for that purchase. An Amplitude event called "Product Purchased" is also created for each product in the purchase. All event properties, except products
, are sent as event_properties
of the Amplitude "Order Completed" event. Information about each product is present only on the individual "Product Purchased" events.
Amplitude has two different ways to track revenue associated with a multi-product purchase. You can choose which method you want to use using the Track Revenue Per Product destination setting.
If you disable the setting ("off"), Segment sends a single revenue event with the total amount purchased. Revenue data is added to the Amplitude "Order Completed" event. The "Product Purchased" events do not contain any native Amplitude revenue data.
If you enable the setting ("on"), Segment sends a single revenue event for each product that was purchased. Revenue data is added to each "Product Purchased" event, and the "Order Completed" event does not contain any native Amplitude revenue data.
Make sure you're formatting your events using the Track method spec, and pass at minimum a revenue
property, as well as a price
and quantity
property for each product in the products list.
If you're not familiar with the Segment Specs, take a look to understand what the Group method does.
warning "" Groups are an enterprise-only feature in Amplitude and are only available if you've purchased the Accounts add-on.
The following example shows a Group call made from a server library:
// On server-side
analytics.group("some_group_id", {
userId: "some_user_id",
traits: {
email: "the_group_email",
some_other_property: "some_other_value",
}
})
And this example shows a call made from a device-mode library that sends directly from the client:
// On client-side
analytics.group("some_group_id", {
email: "the_group_email",
some_other_property: "some_other_value",
})
Even if you don't have an enterprise Amplitude account, or don't have the Accounts add-on, Segment always adds groups as user_properties
on a user record. As long as you specify the destination settings below, Segment adds a "group type" user property with a value of the "group value".
To use Amplitude's groups with Segment, you must enable the following destination settings and make sure you're sending them the data values they need to function. These settings act as a mapping from Segment group traits to Amplitude group types and values.
-
"Amplitude Group Type Trait": This specifies what trait in your Group calls contains the Amplitude "group type". In other words, it's how you tell Segment which trait to use as the group type.
-
"Amplitude Group Value Trait": This specifies what trait in your Group calls contains the Amplitude "group value". It's how you tell Segment which trait to use as the group value.
For example, if you specified group_type
as the "Amplitude Group Type Trait",
and name
as the "Amplitude Group Value Trait", then the example call below...
analytics.group("082108c8-f51e-485f-9d2d-b6ba57ee2c40", {
group_type: "Organization",
name: "ExampleCorp, LLC",
employees: "20",
email: "[email protected]"
});
Associates the current user with the group with type "Organization"
and
value "ExampleCorp, LLC"
. On the device-mode version of the destination, that's all that happens. On Android, and in cloud-mode, Segment sends the traits you pass (in this case, group_type
, name
, employees
, and email
) as group_properties
of that group.
Segment requires that all Group calls provide a group ID. What you provide as group ID doesn't matter, but you cannot leave group ID empty.
If you do not provide "Amplitude Group Type/Value Trait", or one of the traits was not provided in your Group call, then Segment associated the user with a group with the type "[Segment] Group" and with the value "(Group Id)". No properties are associated with that group.
For example, the previous group call would associate the user with a group of type "[Segment] Group" and value "082108c8-f51e-485f-9d2d-b6ba57ee2c40".
Segment's Alias method maps to Amplitude's usermap
endpoint. Making a
Segment Alias call allows you to associate a Segment user's previousId
with the user's userId
, or what Amplitude refers to, respectively, as a
user_id
and a global_user_id
.
By default, Segment does NOT send Alias events to Amplitude. To forward Alias events from Segment, go to your Amplitude destination settings in the Segment web app, and set the Enable Alias setting to "on".
Once enabled, Segment forwards Alias events from Segment's servers only. This means that Alias events reach Amplitude only when you're sending events from the client and have set your Amplitude instance's connection mode to "Cloud Mode", or are sending Alias events from a Segment server-side library (such as Node).
warning "Alias requires the Amplitude Porfolio add-on" To use the Alias method, you must have the Amplitude Portfolio{:target="_blank"} add-on.
For more information, see the Segment Spec page for the Alias method.
Segment identifier name | Equivalent Amplitude identifier name |
---|---|
previousId |
user_id |
userId |
global_user_id |
You can map a Segment user's previousId
to the user's userId
in Amplitude by invoking a Segment Alias method with an argument for each value.
The example Alias call below maps the previousId
with the value of 123
to the userId
with a value of 456
in Amplitude. Both user 123
and 456
still have separate user profiles, but the profiles get merged together when you look at the user's behavior in
Amplitude's Cross Project view{:target="_blank"}.
This kind of mapping is useful for users who have different ids across different Amplitude projects. The user's user_ids
act as child ids, and can all be mapped to a single global_user_id
in Amplitude. This allows you to analyze the user's aggregate behavior in Amplitude's Cross Portfolio view.
analytics.alias({
previousId: '123',
userId: '456'
})
If you make an Alias call from the user's device, you don't need to explicitly pass a previousId
. Segment device-mode Amplitude library sets the value of oldId
to the
value of the current user's previous userId
. The example calls below show how to make an Alias call to map the userId
oldUserId
to the new userId
, finalUserId
:
analytics.identify('oldUserId')
analytics.alias('finalUserId')
// remember to identify with the new `userId`
analytics.identify('finalUserId')
You can also unmap users, for example if you aliased them in error. To unmap a user, pass the user's previousId
as an integration-specific option. The example Alias call below sends
a request to Amplitude that unlinks user 123
from all global_user_ids
it was previously associated with.
analytics.alias({
userId: '456',
integrations: {
Amplitude: {
unmap: '123'
}
}
})
Segment doesn't have a concept for a session{:target="_blank"}.
Device-mode calls to Amplitude include session information because Segment bundles Amplitude's SDK. To set up the same sessionId
for cloud-mode calls to Amplitude, you must explicitly set the session_id
{:target="_blank"} as an integration-specific option, as in the example below.
{
"userId": "1234",
"traits": {
"email": "[email protected]",
"name": "Some Person",
"industry": "Technology"
},
"context": {
"ip": "00.0.00.00"
},
"timestamp": "2016-10-17T00:30:08.276Z",
"integrations": {
"Amplitude": {
"session_id": "<Timestamp>"
}
}
}
You must pass the start time of a session as <Timestamp>
.
When you pass a timestamp value from the session_id
it must be in Unix format, otherwise it generates an error when it is delivered to Amplitude. For example, a date of January 1, 2020 and 9:30am UTC would be written as 2020-12-07T19:33:44+00:00
in ISO 8601, but 1577871000
in Unix epoch time. There are many tools and libraries available to help you convert your timestamps.
You can use Amplitude to set event-level groups. This means the group designation
only applies for the specific event you are recording, and doesn't persist on the
user. To specify these groups, provide an integration-specific groups
property
with key-value pairs corresponding to the groupType
-groupValue
pairs you want to
appear in Amplitude.
analytics.track("Clicked Benefits Dropdown", {
dropdownColor: "blue"
},
{
integrations: {
Amplitude: {
groups: {
onboarding_cohort: "Summer 2016"
}
}
}
});
If you are sending event data to Amplitude in cloud-mode (through the Segment servers) and want to use the Amplitude Release objects feature{:target="_blank"}, you can set the app version user property as in the example below. Make sure to send the version details in the context
object and not as a standard user trait.
analytics.identify('testUser', {
email: '[email protected]',
name: 'John Doe'
}, {
context: {
app: { 'version': "<value_here>", }
}
});
warning "" Note: Segment will continue to support this behavior, however the preferred way to associate a user with a group in Amplitude is to use a Group call.
You can associate a user with a group by providing an integration-specific
groups
property, with the keys being Amplitude "group type" and the values
being Amplitude "group value":
analytics.identify('user-id', {
email: '[email protected]',
country: 'USA'
}, {
integrations: {
Amplitude: {
groups: {
sports: ['basketball', 'tennis']
}
}
}
});
This Identify event creates a new user (or updates an existing user) in Amplitude and sets their sport
groups as basketball
and tennis
.
This feature is only supported when you use the Segment iOS and Android sources, with Amplitude in device-mode.
This feature defaults to enabled
. If a user granted your app location permissions,
enable this setting so that the SDK will also grab the location of the user.
Amplitude does not prompt the user for location permission, so your app must explicitly prompt to ask permission.
On iOS, the user's location is only recorded once per session. If you need to
force update the location in Amplitude, you can use the native method
updateLocation
(iOS only) referenced in Amplitude's iOS SDK documentation{:target="_blank"}
. When you call enableLocationListening
on the iOS SDK, it forces the SDK to update (and overwrite) the initial location that was cached during app startup.
On Android, when enabled, this setting adds a latitude and longitude property to each Track call, which reflecte where geographically the event was triggered.
Even if you disable location listening, Amplitude's ingestion layer attempts to determine the user's location from their IP address. To prevent tracking of any location information, contact your Amplitude CSM to disable all location tracking.
This feature is only supported when you use the Segment iOS and Android sources, with Amplitude in device-mode.
Segment supports Amplitude's useAdvertisingIdForDeviceId
method. For iOS,
this allows you to use the advertisingIdentifier
instead of identifierForVendor
as the Device ID in Amplitude. This is useful for tying together data from advertising campaigns to analytics data.
warning "" Apple prohibits the use of
advertisingIdentifier
if you did not say that your app has advertising in your App Store application.
On Android, this setting relies on Google's Advertising ID. This method can
return null
if a Device ID has not been generated yet.
This increments a user property by some numerical value. If the user
property does not have a value set yet, Segment initializes it with a value of 0
before
being incremented.
When you configure this setting (under traitsToIncrement), Segment calls Amplitude's add
method on the Amplitude identity instance for each trait passed in an Identify call.
The trait must have a numerical value so it can be incremented.
Supported on all components.
This sets the value of a user property only once. Subsequent operations on that
user property will be ignored. Configure the trait
you would like to
setOnce
in the integration settings pane. Segment then checks the traits
object for the configured trait
when identify
is called.
This feature is only supported when you use the Segment iOS and Android sources, with Amplitude in device-mode.
Out-of-session events have a session_id
of -1
, and are not considered part of
the current session. This means they do not extend the current session. This might
be useful if you are logging events triggered by push notifications, for
example. To set an out of session event, send the a Track call with an integration option property outOfSession
set to true
.
The example below shows how you might set this on iOS:
[[SEGAnalytics sharedAnalytics]
track: @"Push Notification Viewed"
properties: nil
options: @{
@"integrations": @{
@"Amplitude": @{
@"outOfSession": @YES
}
}
}
];
The following example shows how you might set this on Android:
Properties properties = new Properties();
Map<String, Object> amplitudeOptions = new HashMap<>();
amplitudeOptions.put("outOfSession", true);
Options options = new Options().setIntegrationOptions("Amplitude", amplitudeOptions);
Analytics.with(context).track("Push Notification Viewed", properties, options);
The Segment mobile device-mode bundles for Amplitude map Segment's flush
method to Amplitude's uploadEvents
method.
The Segment mobile device-mode bundles for Amplitude support logging out users in Amplitude using Segment's reset
method. You don't need to alias users, as Amplitude merges user data on the backend so that any events up to that point from the same client are tracked under the same user.
Segment logs the user out by setting the userId
to nil
and calling Amplitude's method to regenerate a new deviceId
.
Amplitude offers a robust Instrumentation Explorer/Debugger{:target="_blank"}. This is a helpful Chrome extension that shows each page interaction that sends an event to Amplitude.
If you don't your data arrive in Amplitude, see the Analytics.js guide to validating data being transmitted to your third-party destination.
Also, Amplitude doesn't support fields with a value of an array with nested arrays.
For more information on the Amplitude/Segment integration, view Amplitude's Import Segment Data{:target="_blank"} documentation.