-
Notifications
You must be signed in to change notification settings - Fork 377
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
Telemetry: Deduplicate log entries #4154
Conversation
Thank you for updating Change log entry section 👏 Visited at: 2024-12-13 19:02:47 UTC |
Datadog ReportBranch report: ✅ 0 Failed, 22127 Passed, 1475 Skipped, 5m 26.16s Total Time |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #4154 +/- ##
========================================
Coverage 97.75% 97.75%
========================================
Files 1355 1355
Lines 82007 82192 +185
Branches 4207 4217 +10
========================================
+ Hits 80164 80349 +185
Misses 1843 1843 ☔ View full report in Codecov by Sentry. |
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.
Should the worker spec contain a test for metrics?
Co-authored-by: Sergey Fedorov <[email protected]>
Co-authored-by: Sergey Fedorov <[email protected]>
This PR removes duplicate telemetry logs sent within the same batch (currently 10s). The number of occurrences is captured in the new
count
field for theLog
telemetry event, so we can know how many events were removed as duplicated.Change log entry
None