Skip to content

fix(autofix): fix logs query #92178

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

Merged
merged 4 commits into from
May 23, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions src/sentry/seer/autofix.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,7 @@ def _get_logs_for_event(
) -> dict[str, list[dict]] | None:
trace_id = event.trace_id
if not trace_id:
return {
"logs": [],
}
return None

projects_qs = Project.objects.filter(
organization=project.organization, status=ObjectStatus.ACTIVE
Expand All @@ -68,7 +66,7 @@ def _get_logs_for_event(
"code.file.path",
"code.function.name",
],
query=f"trace_id:{trace_id}",
query=f"trace:{trace_id}",
snuba_params=snuba_params,
orderby=["-timestamp"],
offset=0,
Expand Down
Loading