Support CenterHow-ToPause and Resume Monitoring
Back to How-To

Pause and Resume Monitoring

Temporarily stop monitoring without deleting your agent.

When to Pause

  • Planned maintenance
  • Development/testing
  • Agent temporarily offline
  • Cost management

From Dashboard

Pause: Open agent → Pause Monitoring → Confirm

Resume: Open paused agent → Resume Monitoring

From API

# Pause
curl -X PATCH "https://api.agentstatus.dev/api/v1/agents/{agent_id}" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{"status": "paused"}'

# Resume
curl -X PATCH "https://api.agentstatus.dev/api/v1/agents/{agent_id}" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{"status": "active"}'

What Happens When Paused

AspectBehavior
Scheduled checksStop
Manual runsStill allowed
AlertsDon't trigger
HistoryPreserved
BillingSubscription still active
Status badgeShows "Unknown"

Paused periods are excluded from uptime calculations.

Deleting vs Pausing

ActionUse When
PauseTemporary stop, keeping history
DeletePermanently remove agent

Need more help?

Our support team is available to assist you

Contact Support