Reputation: 1871
I am considering adding some support in our app-backend to enable users and sessions to enable the analytics features in application insights.
As far as my understanding goes, i need to annotate the telemetry I send with user id and a session id.
For user id we have an id that is static for a user over time.
For the session id i am a bit puzzled on what to do.
Upvotes: 0
Views: 2126
Reputation: 6241
Application Insights have fields for three different identifiers. Expectations:
If data in these identifiers follow above guidelines - this will result in the best user experience.
On another side, if, for instance, all three identifiers are initialized with UserId, then Transaction view will become unusable since it will show everything what user did ever and individual transactions (such as "buy a car") will be very hard to troubleshoot using this particular view.
Upvotes: 2