How can check if the hudson is busy or not? Meaning i want to check if its currently executing any build or not.

Currently am using following thing:

    if(lastBuild == lastCompletedBuild){
        // hudson is free
    }
    else{
      //hudson is busy
   }

Is this a correct logic? What if the machine restarts/crashes after last build is updated and lastCompletedbuild is not?

Is there any API exposed which can directly be used?

link|improve this question

63% accept rate
1  
You need to add more relevant tags. I don't even know what Hudson is, if it is something to do with java, then add the java tag to your post. People won't find your post without relevant tags. – Caimen Jul 14 '11 at 14:06
@Caimen :Check out hudson @ hudson-ci.org – akshay Jul 14 '11 at 14:43
1  
I am assuming you are writing java code so I am adding the java tag to your post. However just because you are trying to detect Hudon's status does not necessarily mean you are writing java. Details... we need them. – Caimen Jul 14 '11 at 15:41
Do you have access to the machine that you're running the build on? – Grammin Jul 14 '11 at 15:47
@akshay: where is this code being executed? – Reverend Gonzo Jul 14 '11 at 15:51
show 1 more comment
feedback

4 Answers

If you want to see what items are currently in the build queue, you can make an request to http://your.hudson.server/hudson/queue/api/[xml|json].

link|improve this answer
feedback

Look at Hudson's API.

Specifically: You can add /api/[xml|json] to any path in Hudson to get machine readable data of that page. For example hudsonserver:8080/api/xml will return the list of job and their current statuses.

However, the real question i where is this code being executed? Above, you have lastBuild and lastCompletedBuild, but where did those variables get set?

link|improve this answer
I get thosed values by calling api : hudson.server.com/job/myjobname/api/xml and ussing values of tag lastBuild &lastCompletedBuild – akshay Jul 15 '11 at 10:16
feedback

You can try to query the Load Statistics available at a separate API:

<overallLoadStatistics>
  <busyExecutors></busyExecutors>
  <queueLength></queueLength>
  <totalExecutors></totalExecutors>
  <totalQueueLength></totalQueueLength>
</overallLoadStatistics>
link|improve this answer
feedback

Are you interested in whether a specific job is currently building? In that case:

http://[hudson-host-and-path]/job/[job-name]/lastBuild/api/xml

has the tag <building> set to true if a build is currently happening.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.