1

Jenkins Json API · GitHub

 1 year ago
source link: https://gist.github.com/justlaputa/5634984
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
Jenkins Json API

jenkins_url + /api/json?tree=jobs[name,color]

builds

jenkins_url + /job/${job_name}/api/json?tree=builds[number,status,timestamp,id,result]

last build

  • all build info:

jenkins_url + /job/${job_name}/lastBuild/api/json

  • build progress:

jenkins_url + /job/${job_name}/lastBuild/api/json?tree=result,timestamp,estimatedDuration

timestamp = start time

estimatedDuration = duration

Can anyone tell me, how to obtain all the job names and their URLs under a project via jenkins JSON API?

You need to make a get request to http://{jenkins-url}/api/json

Keep in mind that you'll need to authenticate this request with valid credentials.

irodkin commented Sep 9, 2016

edited

@ranbharerp15, if by project you mean views in jenkins then like this:
"http://${jenkins_url}/view/${project_name}/api/json?pretty=true&tree=jobs[name,url]",
where "pretty=true&" part is optional.

Hi Team,

I am creating new Service end point with jenkins from Visual Studio online. I have installed jenkins on my windows server. I can able to access the jenkins URL from remote machine(which is in same network). But when I try to make connection from visual studio online i'm getting timeout issues.

You can find the error screenshot here.
https://ufile.io/f5f

anudeeplalam commented Oct 3, 2016

edited

Hi When I try to access jenkins_url + /job/${job_name}/lastBuild/api/json , I am getting Server returned HTTP response code: 403 for URL error.. Can someone help me.

Thanks for a nice snippet. Could anyone please explain, is it possible to lool for a job with particular parameters on the server side. I know it's possible to request all the available builds. For instance:

$ curl  -g http://admin:d8e8c63306e04c8b8aafade1275697b3@localhost:8080/job/sss/api/json?tree=builds[id,queueId,url] 2>/dev/null | python -m json.tool
{
    "_class": "hudson.model.FreeStyleProject",
    "builds": [
        {
            "_class": "hudson.model.FreeStyleBuild",
            "id": "2",
            "queueId": 21,
            "url": "http://localhost:8080/job/sss/2/"
        },
        {
            "_class": "hudson.model.FreeStyleBuild",
            "id": "1",
            "queueId": 20,
            "url": "http://localhost:8080/job/sss/1/"
        }
    ]
}

But is it possible to get the job with particular parameter? Say, where queueId == 20.

you can ingest this data further & parse using jq tool https://stedolan.github.io/jq/tutorial/

can we find out:

Number of successful builds in a time span e.g. a month

RichardRanft commented Dec 12, 2017

edited

The "property" item of the job JSON is some sort of list of anonymous objects:
"property":[ { "parameterDefinitions":[ { "defaultParameterValue":{ "name":"BUILD_CONFIG", "value":"BJX" }, "description":"", "name":"BUILD_CONFIG", "type":"StringParameterDefinition" }, .... <snip> .... ] }, {} ],
So it's difficult to make a tool to get this in C# since you can't make a class with an anonymous list - the object has to have a name. I'm sort of stuck on getting my parameter definitions here....

any idea on how to filter builds between 2 time stamps
like 2-4 pm today?

Can anyone tell me how to push all log files or jobs from jenkins to logstash?

This is very helpful. Could you please tell me how to get access to any file in the workspace e.g. I want to see test coverage xml inside target. Is there an API for that?

s0nghuiming commented Dec 25, 2018

edited

Ji, masters. What's your comments about getting an ID list of spec job using API?

is there any way to get the all workspaces thr api

Hi ,
Can anyone suggest me the way to retrieve the no of items inside pending queue for a given job

Hi,
Is there a way to get all the jenkins build jobs that are in the build queue from a specific view?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK