getProgressiveBuildLog
Retrieves incremental build log output from Jenkins. Use the returned byte offset to fetch only new content, enabling efficient tailing of running builds.
Instructions
Retrieves build log output incrementally using Jenkins progressive text API. Pass the returned nextByteOffset as the start parameter in subsequent calls to get only new output. Ideal for tailing logs of running builds without re-fetching the entire log.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| jobFullName | Yes | Full name of the Jenkins job | |
| buildNumber | No | Build number (omit for last build) | |
| start | No | Byte offset to start from (use nextByteOffset from previous response) |