Integrations
Jenkins
Correlate Jenkins jobs, builds, pipelines, and logs with an incident window.
What it covers in an RCA
Jenkins provides deployment and CI evidence: failed jobs establish change context, build history supplies timestamps, and console logs can identify the deployed revision or a failed rollout step.
Credentials
The preferred environment wiring is:
JENKINS_URL=https://jenkins.example.com
JENKINS_USER=readonly-bot
JENKINS_TOKEN=replace_meIf JENKINS_USERNAME is set and JENKINS_USER is not, .envrc exports it as
JENKINS_USER. The CLI honors the repo-local XDG_CONFIG_HOME; jenkins login
stores a fallback profile at .config/<env>/jenkins-cli/config.yaml.
Read-only contract
Never trigger a Jenkins build from this workspace. Jobs, builds, logs, pipelines, and nodes are investigation evidence only.
Key commands
jenkins status -o json
jenkins job list --recursive --status FAILURE -o json
jenkins build list <deploy-job> -o json
jenkins build log <job> <number>