我一直在尝试在Groovy脚本程序脚本中找到一个轻量级方法,以列出所有当前正在运行的任何类型的作业。我发现唯一可靠的方法是:
start = System.currentTimeMillis()
def jobsFound = []
def buildingJobs = Jenkins.instance.getAllItems(Job.class).findAll {
it.isBuilding()
}
buildingJobs.each { job->
allRuns = job._getRuns()
allRuns.each { item->
if (!item.isBuilding()) { return } // This job is not building
jobsFound.push(item.getUrl())
}
}
timespent = (System.currentTimeMillis() - start ) / 1000
println "Time: ${timespent} seconds"
println "{jobsFound.size} jobs"
// RESULTS:
// Time: 2.015 seconds. 15 jobs
问题是上面列举了所有当前正在运行的作业 - 我们有数千个! - 然后枚举每个正在运行的作业的所有构建(一些作业具有多达300个构建)。根据目前正在建设的工作量,上述情况可能需要五分钟才能完成。
更有效的方法是枚举活动执行程序 但是这个方法 MISSES 在主服务器上运行的管道(又称工作流程)作业:
start = System.currentTimeMillis()
def busyExecutors = Jenkins.instance.computers.collect {
c -> c.executors.findAll { it.isBusy() }
}.flatten()
def jobsFound = []
busyExecutors.each { e ->
job = e.getCurrentExecutable()
jobsFound.push(job.getUrl())
}
timespent = (System.currentTimeMillis() - start ) / 1000
println "Time: ${timespent} seconds. ${jobsFound.size} jobs"
// RESULTS:
// Time: 0.005 seconds. 12 jobs
两个计数之间的差异很可能是在主服务器上运行的管道作业。
我想我的问题归结为:
有没有办法有效地枚举大师上运行的所有工作?
显然Jenkins不在computers
中包含主人,虽然有一个MasterComputer
类,但是不明白如何获得它或者OffByOneExecutors
哪个flyweight(管道)工作运行
答案 0 :(得分:0)
不是直接使用Jenkins类型/对象,而是通过Jenkins'来自Remote access API的From Jenkins, how do I get a list of the currently running jobs in JSON?:
http://localhost:8080/api/xml?&tree=jobs[builds[*]]&xpath=/hudson/job/build[building="true"]&wrapper=builds
结果:
<builds>
<build _class="hudson.model.FreeStyleBuild">
<action _class="hudson.model.CauseAction"/>
<action/>
<action/>
<building>true</building>
<displayName>#10</displayName>
<duration>0</duration>
<estimatedDuration>3617</estimatedDuration>
<executor/>
<fullDisplayName>Freestyle-Project #10</fullDisplayName>
<id>10</id>
<keepLog>false</keepLog>
<number>10</number>
<queueId>2</queueId>
<timestamp>1499611190781</timestamp>
<url>http://localhost:8080/job/Freestyle-Project/10/</url>
<builtOn/>
<changeSet _class="hudson.scm.EmptyChangeLogSet"/>
</build>
</builds>
不幸的是<builtOn/>
,我猜,它应该引用节点,我的Jenkins v2.60.1中没有提供(但是?)。
使用:
http://localhost:8080/api/json?pretty=true
你得到:
...
"nodeDescription" : "the master Jenkins node",
...
"jobs" : [
{
"_class" : "hudson.model.FreeStyleProject",
"name" : "Freestyle-Project",
"url" : "http://xmg:8080/job/Freestyle-Project/",
"color" : "aborted_anime"
}
]
...
您可以使用以下内容进行过滤:
nodeDescription.equals('the master Jenkins node') && color.endsWith('_anime').