Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
9d27ce16
Commit
9d27ce16
authored
Nov 21, 2017
by
Tomasz Maczukin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update documentation
parent
c0e72610
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
11 deletions
+36
-11
doc/api/runners.md
doc/api/runners.md
+36
-11
No files found.
doc/api/runners.md
View file @
9d27ce16
...
...
@@ -215,9 +215,9 @@ DELETE /runners/:id
curl --request DELETE --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v4/runners/6"
```
## List runner's
running
jobs
## List runner's jobs
List
running jobs assigned to the
specified Runner.
List
jobs that are being processed or were processed by
specified Runner.
```
GET /runners/:id/jobs
...
...
@@ -226,9 +226,10 @@ GET /runners/:id/jobs
| Attribute | Type | Required | Description |
|-----------|---------|----------|---------------------|
|
`id`
| integer | yes | The ID of a runner |
|
`status`
| string | no | Status of the job; one of:
`running`
,
`success`
,
`failed`
,
`canceled`
|
```
curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v4/runners/1/jobs"
curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v4/runners/1/jobs
?status=running
"
```
Example response:
...
...
@@ -247,20 +248,44 @@ Example response:
"started_at"
:
"2017-11-16T08:51:29.000Z"
,
"finished_at"
:
"2017-11-16T08:53:29.000Z"
,
"duration"
:
120
,
"user"
:
null
,
"commit"
:
null
,
"runner"
:
{
"user"
:
{
"id"
:
1
,
"description"
:
"My runner1"
,
"active"
:
true
,
"is_shared"
:
true
,
"name"
:
null
"name"
:
"John Doe2"
,
"username"
:
"user2"
,
"state"
:
"active"
,
"avatar_url"
:
"http://www.gravatar.com/avatar/c922747a93b40d1ea88262bf1aebee62?s=80&d=identicon"
,
"web_url"
:
"http://localhost/user2"
,
"created_at"
:
"2017-11-16T18:38:46.000Z"
,
"bio"
:
null
,
"location"
:
null
,
"skype"
:
""
,
"linkedin"
:
""
,
"twitter"
:
""
,
"website_url"
:
""
,
"organization"
:
null
},
"commit"
:
{
"id"
:
"97de212e80737a608d939f648d959671fb0a0142"
,
"short_id"
:
"97de212e"
,
"title"
:
"Update configuration
\r
"
,
"created_at"
:
"2017-11-16T08:50:28.000Z"
,
"parent_ids"
:
[
"1b12f15a11fc6e62177bef08f47bc7b5ce50b141"
,
"498214de67004b1da3d820901307bed2a68a8ef6"
],
"message"
:
"See merge request !123"
,
"author_name"
:
"John Doe2"
,
"author_email"
:
"user2@example.org"
,
"authored_date"
:
"2017-11-16T08:50:27.000Z"
,
"committer_name"
:
"John Doe2"
,
"committer_email"
:
"user2@example.org"
,
"committed_date"
:
"2017-11-16T08:50:27.000Z"
},
"pipeline"
:
{
"id"
:
2
,
"sha"
:
"97de212e80737a608d939f648d959671fb0a0142"
,
"ref"
:
"master"
,
"status"
:
"
pend
ing"
"status"
:
"
runn
ing"
},
"project"
:
{
"id"
:
1
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment