v33

latestOpenAPI 3.1.0raw.githubusercontent.com2026-04-175267122.5 KB

Get auto-standby diagnostic status

get/instances/{id}/auto-standby/status

Path parameters

idstring required

Instance ID or name

Response

Current auto-standby diagnostic status for the instance

supportedboolean required

Whether the current host platform supports auto-standby diagnostics.

configuredboolean required

Whether the instance has any auto-standby policy configured.

enabledboolean required

Whether the configured auto-standby policy is enabled.

eligibleboolean required

Whether the instance is currently eligible to enter standby.

status'unsupported' | 'disabled' | 'ineligible' | 'active' | 'idle_countdown' | 'ready_for_standby' | 'standby_requested' | 'error' required
reason'unsupported_platform' | 'policy_missing' | 'policy_disabled' | 'instance_not_running' | 'network_disabled' | 'missing_ip' | 'has_vgpu' | 'active_inbound_connections' | 'idle_timeout_not_elapsed' | 'observer_error' | 'ready_for_standby' required
active_inbound_connectionsinteger required

Number of currently tracked qualifying inbound TCP connections.

idle_timeoutstring nullable

Configured idle timeout from the auto-standby policy.

idle_sincestring date-time nullable

When the controller most recently observed the instance become idle.

last_inbound_activity_atstring date-time nullable

Timestamp of the most recent qualifying inbound TCP activity the controller observed.

next_standby_atstring date-time nullable

When the controller expects to attempt standby next, if a countdown is active.

countdown_remainingstring nullable

Remaining time before the controller attempts standby, when applicable.

tracking_modestring required

Diagnostic identifier for the runtime tracking mode in use.

Example response

{
  "supported": true,
  "configured": true,
  "enabled": true,
  "eligible": true,
  "status": "idle_countdown",
  "reason": "idle_timeout_not_elapsed",
  "idle_timeout": "5m0s",
  "idle_since": "2026-04-06T17:04:05Z",
  "last_inbound_activity_at": "2026-04-06T17:01:05Z",
  "next_standby_at": "2026-04-06T17:09:05Z",
  "countdown_remaining": "4m0s",
  "tracking_mode": "conntrack_events_v4_tcp"
}