Skip to main content

Anonymous tracking in the native mobile trackers

info

This feature is available since version 4.

Anonymous tracking is a feature that enables anonymization of various user and session identifiers, to support user privacy when consent for tracking the identifiers isn't given.

On mobile, the following user and session identifiers can be anonymized:

  • Client-side user identifiers:
    • user_id, domain_userid, network_userid, and user_ipaddress, set by you in Subject
    • userId, a device ID, set automatically in the session entity
    • IDFA identifiers (appleIdfa and appleIdfv for iOS, androidIdfa for Android) in the mobile entity
  • Client-side session identifiers:
    • previousSessionId in the session entity, set automatically by the tracker
  • Server-side user identifiers:
    • network_userid and user_ipaddress, set by the Collector
User-set properties

The Collector captures the IP address from the request HTTP headers, and updates the user_ipaddress event property. However, if you set the user_ipaddress property in the Subject, that value has priority.

Similarly, if you set the network_userid property in the Subject, that value is used instead of the Collector cookie value.

Read more about anonymous tracking in the overview page.

There are several levels to the anonymization depending on which of the categories are affected.

1. Full client-side anonymization

In this case, we want to anonymize both the client-side user identifiers as well as the client-side session identifiers. This means disabling the Session entity altogether and enabling user anonymization:

swift
let config = TrackerConfiguration()
.sessionContext(false) // Session context entity won't be added to events
.userAnonymisation(true) // User identifiers in Platform context (IDFA and IDFV) will be anonymized
IdentifierLocation in eventIncluded in event?
user_idAtomic
domain_useridAtomic
userIdSession entity❌ no session entity
sessionIdSession entity❌ no session entity
previousSessionIdSession entity❌ no session entity
appleIdfaMobile (platform) entity
appleIdfvMobile (platform) entity
androidIdfaMobile (platform) entity
network_useridAtomic✅/❌ removed if you provided this in Subject
user_ipaddressAtomic✅/❌ removed if you provided this in Subject

2. Client-side anonymisation with session tracking

This setting disables client-side user identifiers are but tracks session information. In practice, this means that events track the Session entity but the userId property is a null UUID (00000000-0000-0000-0000-000000000000). If the Mobile (platform) entity is enabled, the IDFA identifiers will not be present.

swift
let config = TrackerConfiguration()
.sessionContext(true) // Session entity is tracked with the session ID
.userAnonymisation(true) // User identifiers in Session and Mobile (platform) entity are anonymized
IdentifierLocation in eventIncluded in event?
user_idAtomic
domain_useridAtomic
userIdSession entity❌ null UUID
sessionIdSession entity
previousSessionIdSession entity
appleIdfaMobile (platform) entity
appleIdfvMobile (platform) entity
androidIdfaMobile (platform) entity
network_useridAtomic✅/❌ removed if you provided this in Subject
user_ipaddressAtomic✅/❌ removed if you provided this in Subject
Toggling anonymous tracking

When anonymous tracking is enabled or disabled using tracker.setUserAnonymisation(true | false), the tracker starts a new session. This results in a new sessionId.

3. Server-side anonymization

Server-side anonymization affects user identifiers set server-side. In particular, these are the network_userid property set in server-side cookie and the user IP address. You can anonymize the properties using the serverAnonymisation flag in EmitterConfiguration:

swift
let config = EmitterConfiguration()
.serverAnonymisation(true)
IdentifierLocation in eventIncluded in event?
user_idAtomic
domain_useridAtomic
userIdSession entity
sessionIdSession entity
previousSessionIdSession entity
appleIdfaMobile (platform) entity
appleIdfvMobile (platform) entity
androidIdfaMobile (platform) entity
network_useridAtomic❌/✅ still present if you provided this in Subject
user_ipaddressAtomic❌/✅ still present if you provided this in Subject

Setting the flag will add a SP-Anonymous HTTP header to requests sent to the Snowplow Collector. The Snowplow pipeline will take care of anonymizing the identifiers.

4. Full anonymization

Full anonymization combines client-side and server-side anonymization, to remove all user and session identifiers from events. This approach provides the highest level of privacy.

swift
let trackerConfig = TrackerConfiguration()
.sessionContext(false) // Session entity won't be added to events
.userAnonymisation(true) // User identifiers in Platform context will be anonymized

let emitterConfig = EmitterConfiguration()
.serverAnonymisation(true) // Collector won't track network_userid or user IP
IdentifierLocation in eventIncluded in event?
user_idAtomic
domain_useridAtomic
userIdSession entity❌ no session entity
sessionIdSession entity❌ no session entity
previousSessionIdSession entity❌ no session entity
appleIdfaMobile (platform) entity
appleIdfvMobile (platform) entity
androidIdfaMobile (platform) entity
network_useridAtomic
user_ipaddressAtomic