INGST-03: Accept metrics via POST /api/v1/data/metrics #3
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Server accepts metrics snapshots via
POST /api/v1/data/metricsand returns202 Acceptedwith{"status": "accepted", "count": N}.Category: Data Ingestion
REQ-ID: INGST-03
Implemented in Phase 1.
IngestionControllerhandlesPOST /api/v1/data/metrics, accepting arrays of MetricsSnapshot. Stored viaMetricsRepositorywith batch-buffered writes. Key files:IngestionController.java,MetricsRepository.java.