feat(apm): add APM Services/Entities API support#22
Merged
Conversation
Implements 7 new APM commands for querying services, entities, dependencies, and service flow maps: - pup apm services (list, stats, operations, resources) - pup apm entities list - pup apm dependencies list [service] - pup apm flow-map All commands use RawRequest pattern due to limited SDK support. Includes comprehensive tests and documentation updates. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
platinummonkey
approved these changes
Feb 10, 2026
📊 Test Coverage ReportThreshold: 80% ✅ Coverage by Package📈 Coverage Status: ✅ PASSED - Coverage meets minimum threshold Updated for commit a40d11d |
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
Implements 7 new APM commands for querying services, entities, dependencies, and service flow maps:
pup apm services list- List all APM servicespup apm services stats- Get service performance statisticspup apm services operations <service>- List operations for a servicepup apm services resources <service>- List resources (endpoints) for a service+operationpup apm entities list- List APM entities with rich metadatapup apm dependencies list [service]- View service dependenciespup apm flow-map- Service flow map with performance metricsAll commands use the RawRequest pattern due to limited SDK support for APM APIs. The implementation follows patterns established in
cmd/investigations.gofor API calls outside the official SDK.Test Plan
go test ./cmd/...)go build).envrcadded to.gitignoreto prevent committing staging credentialsCoverage
Test coverage matches existing command patterns: 77.9% on init functions, 0% on API call functions (consistent with other commands like monitors.go)
🤖 Generated with Claude Code