feat: capture per-version sync metrics with detailed + summary report - #44
Merged
Conversation
…port Adds a SyncMetrics accumulator that tracks, per artifact and per version, whether each source version was already in sync, newly synced (with asset count, bytes, and duration), or failed (with error and duration). At the end of each run main() logs a detailed block plus a summary covering total artifacts, versions in sync, versions synced, versions failed, assets copied, bytes transferred, and total duration. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
…metrics # Conflicts: # src/test/kotlin/io/cloudshiftdev/mavensync/FakeMavenHttpRepository.kt
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.
Summary
SyncMetricsaccumulator that tracks each source version per artifact as in-sync, synced (with asset count, bytes, duration), or failed (with error message and duration).MavenSyncEnginenow wraps each version sync in try/catch with monotonic timing — failures are recorded and the worker continues to the next version (re-throwsCancellationExceptionso structured concurrency still works);copyAsset/uploadAssetreturnLongbytes so the engine can sum transfer size.MavenSyncMainbuilds the metrics, passes them to the engine, and in afinallylogs both the detailed (per artifact + per version) block and the summary block (artifacts, versions in sync / synced / failed, assets copied, bytes transferred, total duration).SyncMetricsTestplus three newMavenSyncEngineTestcases covering in-sync recording, synced bytes/asset counts, and the failure-continuation path.Test plan