-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathjenkins_queue_info.py
executable file
·119 lines (100 loc) · 3.47 KB
/
jenkins_queue_info.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#!/usr/bin/env python3
"""
Copyright 2018-Present Couchbase, Inc.
Use of this software is governed by the Business Source License included in
the file licenses/BSL-Couchbase.txt. As of the Change Date specified in that
file, in accordance with the Business Source License, use of this software will
be governed by the Apache License, Version 2.0, included in the file
licenses/APL2.txt.
This script creates a TUI to list the current items in the cv.jenkins
build queue.
Usage: python jenkins_queue_info.py
"""
import curses
import datetime
import signal
import sys
import time
import jenkins
from tabulate import tabulate
import curses_tui
# https://python-jenkins.readthedocs.io/en/latest/api.html
# Curses
stdscr = curses.initscr()
curses.noecho()
curses.cbreak()
serverURL = "http://cv.jenkins.couchbase.com/"
server = jenkins.Jenkins(serverURL)
version = server.get_version()
def poll_queue(status):
fileOut = []
queue_info = server.get_queue_info()
fileOut.append(str(status) + " " + time.strftime("%H:%M:%S") +
" " + str(status))
fileOut.append("Current Queue length: " + str(len(queue_info)))
buildTable = []
for i in queue_info:
commit = ""
change_no = ""
owner = ""
for j in i.get('actions'):
try:
for x in j.get('parameters'):
if x.get('name') == 'GERRIT_CHANGE_SUBJECT':
commit = str(x.get('value'))
elif x.get('name') == 'GERRIT_CHANGE_NUMBER':
change_no = str(x.get('value'))
elif x.get("name") == 'GERRIT_CHANGE_OWNER_NAME':
owner = str(x.get('value'))
except TypeError:
continue
if len(commit) > 100:
commit = commit[:97] + "..."
buildID = str(i.get('id'))
taskName = str(i.get('task').get('name'))
buildWhy = str(i.get('why'))
if taskName == 'None':
taskName = "Unknown task"
if len(buildWhy) > 75:
buildWhy = buildWhy[:72] + "..."
dateTime = (datetime.datetime.now() -
datetime.datetime.fromtimestamp(i['inQueueSince'] / 1e3))
timeInQueue = str(dateTime).split('.')[0]
buildTable.append([buildID, taskName, change_no, commit, owner,
buildWhy, timeInQueue])
headers = ['BuildID', 'Job Name', 'Gerrit No.', 'Commit Header',
'Owner', 'Queue Reason', 'Queue Time']
for n in tabulate(buildTable, headers=headers).split('\n'):
fileOut.append(n)
return fileOut
def sigterm_handler(signal, frame):
print('Hasta la vista')
curses.nocbreak()
stdscr.keypad(False)
curses.echo()
curses.endwin()
sys.exit(0)
signal.signal(signal.SIGTERM, sigterm_handler)
status = ['|', '/', '-', '\\']
statusIndex = 0
refreshBase = time.time()
refreshTime = 15
try:
screen = curses_tui.Screen(poll_queue('x'))
while True:
try:
screen.input_stream_no_loop(2)
except curses.error as error:
print("Curses Error, try widening the console area")
raise error
if time.time() - refreshBase > refreshTime:
screen.update_items(poll_queue(status[statusIndex]))
statusIndex = (statusIndex + 1) % 4
refreshBase = time.time()
except KeyboardInterrupt:
print('Cheerio')
curses.nocbreak()
stdscr.keypad(False)
curses.echo()
curses.endwin()
sys.exit(0)