Raygun boasts of Rich User Tracking. However they ask us to provide the following data:
// V2
rg4js('setUser', {
identifier: 'user_email_address@localhost.local',
isAnonymous: false,
email: 'emailaddress@localhost.local',
firstName: 'Foo',
fullName: 'Foo Bar',
uuid: 'BAE62917-ACE8-ab3D-9287-B6A33B8E8C55'
});
// V1
Raygun.setUser('user_email_address@localhost.local',
false,
'user_email_address@localhost.local',
'Foo',
'Foo Bar',
'BAE62917-ACE8-ab3D-9287-B6A33B8E8C55');
How is this rich user tracking if we are expected to provide the user data? Is my undestanding wrong?
What if we have a number of users using the application, what then? Is there anybody who has tried out this feature?