CLI quickstart
Five commands you'll actually use.
CLI quickstart
Five commands you'll actually run.
bash# What's the state of the world right now?happy status# List all monitorshappy monitors list# Create a monitorhappy monitors create --name "API" --url https://api.acme.com/health# Pause a monitor by namehappy monitors pause api# Speed-test any URL from 6 regionshappy speed-test https://acme.com
Output formats
Default output is human-readable tables. Add --json for piping into scripts:
bashhappy monitors list --json | jq '.[] | select(.status == "down")'