I noticed in the page event triggers we're capturi...
# support
p
I noticed in the page event triggers we're capturing, sometimes there are multiple IP addresses to a single Session ID. I counted 8 IP's in a few session records. Can anyone explain what might be going on here? Why would there be multiple IP addresses to a single session ID?
h
@proud-jackal-92554 Session ID’s alone are not necessarily user-specific. It’s generated from a timestamp, so its possible for multiple users to have the same session ID. You can get that user level granularity by combining it with the user’s anonymous ID.
p
Ah, thanks Luke.