Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Monitor and manage swarm circuit breakers, quarantine, and message statistics
https://app.allternit.com/shell?view=swarm
https://app.allternit.com/swarm-preview
open('swarm');
https://api.allternit.com/api/v1/swarm
closed
open
half_open
GET
/api/v1/swarm/circuit-breakers
POST
/api/v1/swarm/circuit-breakers/:id/reset
/api/v1/swarm/quarantine
/api/v1/swarm/quarantine/:id/release
/api/v1/swarm/messages/stats
curl https://api.allternit.com/api/v1/swarm/circuit-breakers \ -H "Authorization: Bearer $TOKEN"
[ { "agent_id": "agent_018f3a7c...", "state": "open", "failure_count": 5, "success_count": 0, "last_failure_at": "2026-08-13T17:55:00Z", "last_state_change": "2026-08-13T17:55:00Z" } ]
curl -X POST https://api.allternit.com/api/v1/swarm/circuit-breakers/agent_018f3a7c.../reset \ -H "Authorization: Bearer $TOKEN"
{ "success": true, "agent_id": "agent_018f3a7c...", "state": "closed" }
curl https://api.allternit.com/api/v1/swarm/quarantine \ -H "Authorization: Bearer $TOKEN"
[ { "agent_id": "agent_9b2c...", "quarantined_at": "2026-08-13T17:50:00Z", "expires_at": "2026-08-13T18:50:00Z", "reason": "repeated_policy_violation", "remaining_minutes": 48 } ]
curl https://api.allternit.com/api/v1/swarm/messages/stats \ -H "Authorization: Bearer $TOKEN"
{ "messages_sent": 12400, "messages_received": 12310, "messages_failed": 90, "avg_latency_ms": 142.5, "active_streams": 12 }
unauthorized
not_found
invalid_state
internal_error