Utility - exportDeployRun
Utility - exportDeployRun
Description :
This command exports the results (job run log) of a Deploy Job run to a file. You must identify the job run by its run ID. The CSV file contains the following values on each line: Participant,Step,Attempt,Date,Type,Message,Item Id,Item Name For example: eng.bladelogic.com,Commit,1,10/07/2013 10:05:47,Info,Processing asset FILE,2,C:/Apps/LTSec/bin/NUETPolicy.dll
Return type : java.lang.Void
Command Input :
Variable Name | Variable Type | Description |
---|---|---|
jobGroupName | String | Fully qualified job group that contains the Deploy Job. |
jobName | String | Name of the Deploy Job whose run results you want to export. |
runId | Integer | ID of the Deploy Job run whose results you want to export. |
exportFileName | String | Name of the file that holds the export. |
Example
The following example shows how to export the job run result of a Deploy Job.
Script
JOB_ID=`blcli DeployJobRun findLastRunIdByJobKey $JOB_KEY`
blcli Utility exportDeployRun "/sampleJobGroup" "sampleJob" $JOB_ID "C:/temp/sampleJobResult.csv"