: 통계거래 데이터 저장 - transaction 격리

Task-Url:
This commit is contained in:
pksup
2026-01-09 10:08:12 +09:00
parent e39ddc9459
commit 312756adc8
14 changed files with 1428 additions and 1 deletions
@@ -0,0 +1,14 @@
/**
* API Gateway 통계 수집 모듈
*
* <p>분단위로 API 거래 통계를 수집하고 DB에 저장합니다.
* HdrHistogram을 사용하여 메모리 효율적으로 응답시간 백분위(P50, P95)를 계산합니다.
*
* <h3>주요 컴포넌트</h3>
* <ul>
* <li>ApiStatsMonitorImpl - StatisticsMonitor 구현체 (진입점)</li>
* <li>ApiStatsCollector - 거래 이벤트 수집 및 메모리 집계</li>
* <li>ApiStatsScheduler - 매 분 DB 저장 스케줄러</li>
* </ul>
*/
package com.eactive.eai.custom.statistics;