All Recipes
Disk Space Monitor
Runs df -h on every fleet machine via batch execution and parses the output for partitions above configurable thresholds. Schedule hourly or daily to prevent disk-full outages that can halt builds and deployments.
beginner
Scheduled (Cron)
1 step
20 seconds
Steps
1
Check disk usage on all fleet machines
fleet_batch_execute via gripos-mcp
Recipe JSON
{"schedule":"0 */4 * * *","steps":[{"tool":"fleet_batch_execute","args":{"command":"df -h | grep -E '^/'"},"output_as":"disk_usage"}],"thresholds":{"warning":80,"critical":95},"notify":{"on":"warning","channel":"slack"}}Prerequisites
- gripos-fleet configured with machines
Similar Recipes
Fleet Health Check
Runs a comprehensive health report across all fleet machines and lists their status.
Deploy Canary Check
Validates a canary deployment by running health checks and comparing metrics against the baseline.
Daily Metrics Snapshot
Captures a snapshot of key system and application metrics and writes them to a log file.