stream_job_logs
Stream live log output for a running or recently completed job. Blocks until job completion and returns accumulated stdout and stderr. Use for real-time execution view.
Instructions
Stream live log output for a running or recently completed job. Blocks until the job reaches a terminal state (completed/failed/cancelled) or 10 minutes elapses. Returns the full stdout and stderr accumulated during the run. Prefer this over get_job_logs for jobs that are actively running or when you want a real-time execution view.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| job_id | Yes | The job ID to stream logs for. | |
| timeout_seconds | No | Maximum seconds to wait for job completion (default 600, max 600). |