🐛 Fix action <-> long task correlation#4033
Merged
amortemousque merged 2 commits intomainfrom Dec 16, 2025
Merged
Conversation
562f191 to
659f9f8
Compare
Bundles Sizes Evolution
🚀 CPU PerformancePending... 🧠 Memory Performance
|
|
✅ Tests 🎉 All green!❄️ No new flaky tests detected 🎯 Code Coverage 🔗 Commit SHA: 9ad65fe | Docs | Datadog PR Page | Was this helpful? Give us feedback! |
thomasbertet
approved these changes
Dec 15, 2025
Collaborator
thomasbertet
left a comment
There was a problem hiding this comment.
So nice to see the correlation improvement! Code changes LGTM!
BeltranBulbarellaDD
approved these changes
Dec 15, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
When a click handler runs longer than 50 ms, it creates a long task. Before this fix, the RUM long task was not linked to the RUM action because the action used
clocksNow()instead ofevent.timeStamp. As a result, long_task.startTime was earlier than action.startTime. After the fix, long_task.startTime is later than action.startTime, which allows propercorrelation.
Increase by 6× the number of long tasks correlated with a click in the Datadog UI.

Query: @long_task.scripts.invoker:click @action.id:*
Changes
Test instructions
Checklist