We use analytics and marketing cookies to understand how Grip OS is discovered and used. No data leaves your device without consent. Cookie Policy

All Recipes

Deploy Canary Check

Triggered after a deployment event, this recipe executes health probes against canary instances and compares latency, error rate, and resource usage to the stable baseline. Use it to gate production rollouts with automated go/no-go decisions.

advanced
Event-Triggered
2 steps
3 minutes

Steps

1

Run health probes against canary instances

fleet_batch_execute via gripos-mcp

2

Generate baseline health report for comparison

fleet_health_report via gripos-mcp

Recipe JSON

{"trigger":"deploy","steps":[{"tool":"fleet_batch_execute","args":{"command":"curl -sf http://localhost:8080/health | jq ."},"output_as":"canary_health"},{"tool":"fleet_health_report","output_as":"baseline_health"}],"rollback":{"on":"error_rate > 5%","action":"revert"}}

Prerequisites

  • Canary deployment strategy configured
  • Health endpoint available on canary instances

Run this recipe in Grip OS

Copy the JSON above, paste it into your Grip OS config, and it runs on schedule or on demand.