We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a17ae30 commit fb457a7Copy full SHA for fb457a7
src/sentry/replays/lib/summarize.py
@@ -272,8 +272,9 @@ def as_log_message(event: dict[str, Any]) -> str | None:
272
message = event["data"]["payload"]["message"]
273
return f"User rage clicked on {message} but the triggered action was slow to complete at {timestamp}"
274
case EventType.NAVIGATION_SPAN:
275
+ timestamp_ms = timestamp * 1000
276
to = event["data"]["payload"]["description"]
- return f"User navigated to: {to} at {timestamp}"
277
+ return f"User navigated to: {to} at {timestamp_ms}"
278
case EventType.CONSOLE:
279
280
return f"Logged: {message} at {timestamp}"
0 commit comments