AGNT-03: Agent heartbeat via POST /api/v1/agents/{id}/heartbeat #15
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?
Agent sends heartbeat every 30s via
POST /api/v1/agents/{id}/heartbeatwith{configVersion, status}. Server updates agent last-seen timestamp and lifecycle state.Category: Agent Management
REQ-ID: AGNT-03
Implemented in Phase 3.
POST /api/v1/agents/{id}/heartbeatupdates lastHeartbeat timestamp and transitions agent back to LIVE if currently STALE. Key files:AgentRegistrationController.java,AgentRegistryService.java.