Raygun boasts of Rich User Tracking. However they ask us to provide the following data:
// V2
rg4js('setUser', {
identifier: '[email protected]',
isAnonymous: false,
email: '[email protected]',
firstName: 'Foo',
fullName: 'Foo Bar',
uuid: 'BAE62917-ACE8-ab3D-9287-B6A33B8E8C55'
});
// V1
Raygun.setUser('[email protected]',
false,
'[email protected]',
'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?