-
Notifications
You must be signed in to change notification settings - Fork 74
feat: Support sending anonymous user ids in logs. #2945
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
3cf7ee6
to
2a0b44a
Compare
🎯 Code Coverage 🔗 Commit SHA: 514fcec | Docs | Was this helpful? Give us feedback! |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## develop #2945 +/- ##
===========================================
- Coverage 71.02% 70.81% -0.22%
===========================================
Files 829 829
Lines 30381 30382 +1
Branches 5183 5183
===========================================
- Hits 21578 21513 -65
- Misses 7347 7403 +56
- Partials 1456 1466 +10
🚀 New features to boost your workflow:
|
2a0b44a
to
32fb2b1
Compare
import fr.xgouchet.elmyr.junit5.ForgeExtension | ||
import org.assertj.core.api.Assertions.assertThat | ||
import org.junit.jupiter.api.BeforeEach | ||
import org.junit.jupiter.api.RepeatedTest |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
seems like unused import
} | ||
|
||
@Test | ||
@Test() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Test() | |
@Test |
import fr.xgouchet.elmyr.junit5.ForgeExtension | ||
import org.assertj.core.api.Assertions.assertThat | ||
import org.junit.jupiter.api.BeforeEach | ||
import org.junit.jupiter.api.RepeatedTest |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unused import?
RUM supports tracking users anonymously through an anonymous user id. Other platforms add this id to the `usr` attribute in logs, but Android currently does not, so this adds support for it.
514fcec
32fb2b1
to
514fcec
Compare
What does this PR do?
RUM supports tracking users anonymously through an anonymous user id. Other platforms add this id to the
usr
attribute in logs, but Android currently does not, so this adds support for it.Motivation
When implementing the new User and Account information APIs, Flutter integration tests that were checking for the anonymous user id in logs noticed it was missing.
Review checklist (to be filled by reviewers)