feat: Sentry 회원가입 지표를 일별 시계열로 제공 - #496
Merged
Merged
Conversation
trace metric의 숫자 값은 sum(value)로 집계하고 user.action.count에서 event=sign_up을 일별 시계열로 분리한다. Constraint: Picke-iOS Sentry metric contract and official trace metrics value alias Rejected: Mixpanel 회원가입 값을 Sentry 원천 값으로 표시 | 데이터 출처가 다름 Confidence: high Scope-risk: moderate Directive: Sentry counter metrics use sum(value), sign_up query remains quoted metric.name Tested: SentryClientTest; live Sentry timeseries HTTP 200; git diff --check Not-tested: current period has no Sentry sign_up sample, so non-zero production value
3 tasks
Roy-wonji
added a commit
that referenced
this pull request
Sep 14, 2026
## #️⃣ 연관된 이슈 - 개발 반영: #496 ## 📝 작업 내용 ### ✨ Feature | 내용 | 검증 | |------|------| | Sentry `user.action.count`의 `event=sign_up`을 회원가입 일별 시계열로 제공 | Sentry timeseries HTTP 200 | | Trace Metrics를 `sum(value)`로 집계 | `SentryClientTest` 통과 | ## 📌 공유 사항 > 현재 조회 기간에는 Sentry `sign_up` 표본이 없어 0으로 반환됩니다. 이후 앱에서 전송되는 회원가입 이벤트는 Sentry 원천 값으로 집계됩니다. ## ✅ 체크리스트 - [x] 최신 main에서 개발 병합 커밋을 승격했습니다. - [x] 대상 테스트와 `git diff --check`를 통과했습니다. - [x] 개발 Railway 배포가 성공했습니다. ## 💬 리뷰 요구사항 > `metric.name:user.action.count`와 `event:sign_up` 필터 및 `sum(value)` 집계 계약을 확인 부탁드립니다.
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
변경 사항
user.action.count에서event=sign_up을 별도 데이터셋으로 제공합니다.sum(value)로 집계해 실제 metric 값을 반환합니다.검증
./gradlew test --tests com.swyp.picke.domain.admin.analytics.SentryClientTestgit diff --check