Skip to content

Commit aa28ea9

Browse files
committed
log usage of sort by projects
1 parent 9f70987 commit aa28ea9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/sentry/core/endpoints/organization_index.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ def _get_from_cell(self, request: Request) -> Response:
208208
order_by = "-member_count"
209209
paginator_cls = OffsetPaginator
210210
elif sort_by == "projects":
211+
sentry_sdk.capture_message("organization_index.sort_by_projects_used")
211212
queryset = queryset.annotate(project_count=Count("project"))
212213
order_by = "-project_count"
213214
paginator_cls = OffsetPaginator

0 commit comments

Comments
 (0)