Skip to main content

Overview

Shows the health and connectivity status of your entire Applad instance across all environments. Tells you whether each environment’s infrastructure is reachable, whether services are running, whether adapter connections are healthy, and whether any config has drifted from the running state.

Usage

applad status [options]

Options

--env
string
Scopes the status check to a single environment. Useful for quickly checking whether production is healthy without the noise of other environments.
--drift
boolean
default:"false"
Shows whether any configuration has drifted from the running state. Helps identify when the actual infrastructure state differs from your configuration files.

Examples

Check status of all environments

applad status
Shows health and connectivity for every configured environment.

Check production status only

applad status --env production
Displays status information only for the production environment.

Check for configuration drift

applad status --drift
Shows health status and highlights any configuration drift across all environments.

Check drift for a specific environment

applad status --env production --drift
Shows production health status and any configuration drift.

What Gets Checked

The status command reports on:
  • Infrastructure reachability - Whether the environment’s servers are accessible
  • Service status - Whether Docker containers and services are running
  • Adapter health - Whether database, storage, and other adapter connections are working
  • Configuration drift - Whether the running configuration matches your local files (when --drift is used)

Status Indicators

  • Healthy - Environment is fully operational
  • Degraded - Some services or adapters are having issues
  • Unreachable - Cannot connect to the environment’s infrastructure
  • Drifted - Running configuration doesn’t match local config files

Use Cases

  • Health monitoring - Regular checks to ensure environments are operational
  • Pre-deployment validation - Verify environment health before deploying
  • Drift detection - Identify when manual changes have been made to infrastructure
  • Troubleshooting - Quickly identify which components are having issues

Build docs developers (and LLMs) love