watch_playbook
Monitor Ansible playbook execution progress in real-time to track task completion, current status, and execution timeline with detailed progress updates.
Instructions
Monitor a playbook execution in real-time. Returns detailed progress including task completion, current status, and execution timeline. Call repeatedly to track progress.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_results | No | Include task result details (default: false, can be verbose) | |
include_tasks | No | Include detailed task information (default: true) | |
playbook_id | Yes | The ID of the playbook to monitor |
Input Schema (JSON Schema)
{
"properties": {
"include_results": {
"default": false,
"description": "Include task result details (default: false, can be verbose)",
"type": "boolean"
},
"include_tasks": {
"default": true,
"description": "Include detailed task information (default: true)",
"type": "boolean"
},
"playbook_id": {
"description": "The ID of the playbook to monitor",
"type": "number"
}
},
"required": [
"playbook_id"
],
"type": "object"
}