feat(networkmonitor): implement CloudWatch Network Monitor service (go-3wm1)#2235
Merged
Conversation
…— full AWS parity) (go-3wm1)
Add CloudWatch Network Monitor service with full CRUD lifecycle for Monitors
and Probes, context-based region isolation, tagging support, pagination, and
SDK completeness verification.
- Monitor: Create/Get/Update/Delete/List with aggregation period validation
- Probe: Create/Get/Update/Delete with TCP port validation and address family detection
- Tagging: ListTagsForResource/TagResource/UntagResource for monitors and probes
- REST handler at /monitors and /tags/{resourceArn} paths
- InMemoryBackend with region-isolated storage (regionContextKey pattern)
- Snapshot/Restore persistence
- sdk_completeness_test.go against aws-sdk-go-v2 networkmonitor client
- Table-driven tests for backend and handler layers
- Provider registered in cli.go and teststack.go
Collaborator
Author
📊 Code Coverage Report
Tip This project maintains a minimum coverage threshold of 85%. Maintain or improve coverage on new code to ensure long-term stability. Last updated: Sat, 13 Jun 2026 08:07:54 GMT |
added 4 commits
June 12, 2026 22:43
- Apply goimports import ordering - Apply golines line-length formatting - Remove verbose comments on constants (godot lint) - Move arnSplitParts to backend, rename arnColonParts (avoid handler unused) - Merge latest main
Move mediastoredata provider to getLatestServiceProviders helper to bring getServiceProviders below the 100-line funlen limit.
…one + omics) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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.
Implement new services/networkmonitor with full AWS parity.
Implementation
API Coverage
Testing
Verification