Skip to content
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

✨ feat: AOP 추가 #32

Merged
merged 3 commits into from
Dec 5, 2024
Merged

Conversation

na-rong
Copy link

@na-rong na-rong commented Dec 3, 2024

👀 관련 이슈

✨ 작업한 내용

  • 모든 api 별 공통 로깅 로직 구현
  • 지갑 조회, 결제, 송금 등 주요 비즈니스 로직에 대한 모니터링 추가
  • 각 작업의 성공/실패 여부 추적
  • 시간대별, 사용자별 행동 패턴 분석을 위한 로깅 구현

🌀 PR Point

WalletLoggingAspect에서 구현한 모니터링 포인트들이 적절한지 리뷰 필요

  • 로그 데이터 포맷 예시
{
  "http_method": "GET",
  "api_name": "getWalletByUserId",
  "service_name": "wallet-service",
  "client_ip": "0:0:0:0:0:0:0:1",
  "http_status": 200,
  "response_time_ms": 210,
  "uri": "/api/v1/wallets/user/1",
  "api_path": "/api/v1/wallets/user/{id}",
  "request_id": "6f2c74a4-5b06-4577-9fd2-03d96c9a1bd7",
  "timestamp": "2024-12-05T11:36:33.751188800",
  "status": "success"
}

// 비즈니스 로직 로그
{
  "log_type": "business",
  "user_id": 2,
  "service_name": "wallet-service",
  "action": "check_wallet_balance",
  "http_status": 200,
  "response_time_ms": 11,
  "timestamp": "2024-12-05T11:37:05.433416",
  "status": "success"
}

🍰 참고사항

로그 포맷: JSON 형태로 통일하여 추후 ELK 스택 연동 시 파싱이 용이하도록 구현
모든 로그에 service_name, timestamp 등 공통 필드 포함
에러 발생 시 error_message 필드를 추가하여 디버깅 용이성 확보

더 모니터링 할 때 필요한 부분이 있는지 검증 필요

HOST 매핑 테스트 검증 필요

📷 스크린샷 또는 GIF

기능 스크린샷
API 호출 image
지갑 정보 조회 image

@RyuChaeHyun
Copy link
Contributor

토큰화 금액도 로그에 같이 찍혀있는건가용?

@RyuChaeHyun RyuChaeHyun self-assigned this Dec 3, 2024
@yyyeun yyyeun added the enhancement New feature or request label Dec 3, 2024
@na-rong
Copy link
Author

na-rong commented Dec 3, 2024

토큰화 금액은 따로 없네용,,, 추가해야될 거 같습니당!
노션에 모니터링 페이지 따로 하나 팠는데 거기에 혹시 wallet에서 더 추가되어야 하는 부분 있으면 적어주실 수 있을까요~?

@RyuChaeHyun RyuChaeHyun merged commit a0d2333 into develop Dec 5, 2024
@RyuChaeHyun
Copy link
Contributor

올려두겠습니다~

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants