OLD | NEW |
| (Empty) |
1 | |
2 <!DOCTYPE html> | |
3 | |
4 <html lang="en"> | |
5 <meta charset="utf-8"> | |
6 <title> | |
7 | |
8 Infra Failure | |
9 | |
10 - | |
11 | |
12 1a2b3c4d5e6f7890 | |
13 </title> | |
14 <link rel="stylesheet" href="/static/buildbot/css/default.css" type="text/css"> | |
15 <link rel="stylesheet" href="/static/common/third_party/css/jquery-ui.min.css" t
ype="text/css"> | |
16 <script src="/static/common/third_party/js/moment-with-locales.min.js"></script> | |
17 <script src="/static/common/third_party/js/moment-timezone-with-data-2012-2022.m
in.js"></script> | |
18 <script src="/static/common/js/time.js"></script> | |
19 <script src="/static/common/third_party/js/jquery.min.js"></script> | |
20 <script src="/static/common/third_party/js/jquery-ui.min.js"></script> | |
21 | |
22 <link id="favicon" rel="shortcut icon" type="image/png" href="/static/common/fav
icon/purple-32.png"> | |
23 | |
24 | |
25 | |
26 <body class="interface"> | |
27 <header> | |
28 Luci | |
29 <div> | |
30 | |
31 <a href="http://fake.example.com/login?dest=%2Ffoobar">login</a> | |
32 | |
33 </div> | |
34 </header> | |
35 <hr> | |
36 | |
37 <div class="content"> | |
38 <h1> | |
39 | |
40 Build 1a2b3c4d5e6f7890 | |
41 | |
42 </h1> | |
43 | |
44 <div class="column"> | |
45 | |
46 <h2>Results:</h2> | |
47 | |
48 | |
49 <p class="exception result">Internal Failure | |
50 | |
51 <span class="subtitle"> | |
52 | |
53 </span> | |
54 </p> | |
55 | |
56 | |
57 | |
58 | |
59 | |
60 | |
61 <h2>Execution:</h2> | |
62 <ul> | |
63 | |
64 <li> | |
65 Source: | |
66 <a href="https://example.com/task?id=1a2b3c4d5e6f7890&show_raw=1&a
mp;wide_logs=true">Task 1a2b3c4d5e6f7890</a> | |
67 </li> | |
68 | |
69 | |
70 | |
71 | |
72 | |
73 </ul> | |
74 | |
75 | |
76 | |
77 | |
78 | |
79 <h2>Steps and Logfiles:</h2> | |
80 Show: | |
81 <input type="radio" name="hider" id="showAll"> | |
82 <label for="showAll">All</label> | |
83 <input type="radio" name="hider" id="showStandard" checked> | |
84 <label for="showStandard">Standard</label> | |
85 <input type="radio" name="hider" id="showInteresting"> | |
86 <label for="showInteresting">Non-Green Only</label> | |
87 <ol id="steps" class="standard"> | |
88 | |
89 | |
90 | |
91 | |
92 | |
93 | |
94 <li class="verbosity-Interesting"> | |
95 <div class="status-InfraFailure result"> | |
96 <span class="duration" | |
97 data-starttime="2016-03-14T10:00:01Z" | |
98 data-endtime="2016-03-14T11:00:18Z"> | |
99 ( 1 hrs )</span> | |
100 <b>LogDog stream not found</b> | |
101 <span> | |
102 <div class="step-text">Job likely failed to start.</div> | |
103 </span> | |
104 </div> | |
105 <ul> | |
106 | |
107 | |
108 | |
109 <li class="sublink"> - no logs - </li> | |
110 | |
111 </ul> | |
112 </li> | |
113 | |
114 </ol> | |
115 | |
116 | |
117 </div> | |
118 | |
119 <div class="column"> | |
120 | |
121 <h2>Build Properties:</h2> | |
122 | |
123 <table class="info BuildProperties" width="100%"> | |
124 <tr><th>Name</th><th>Value</th><th>Source</th></tr> | |
125 | |
126 | |
127 | |
128 | |
129 <tr> | |
130 <td class="left">Exit Code</td> | |
131 <td class="middle"><abbr title="1">1</abbr></td> | |
132 <td>Swarming</td> | |
133 </tr> | |
134 | |
135 | |
136 </table> | |
137 | |
138 | |
139 | |
140 <h2>Timing:</h2> | |
141 <table class="info" width="100%"> | |
142 <tr class="alt"><td class="left">Start</td> | |
143 <td> | |
144 <span class="local-time" data-timestamp="1457949601850">Monday, 14-Mar
-16 10:00:01 UTC</span> | |
145 </td></tr> | |
146 <tr><td class="left">End</td> | |
147 <td> | |
148 <span class="local-time" data-timestamp="1457953218486">Monday, 14-Mar
-16 11:00:18 UTC</span> | |
149 </td></tr> | |
150 <tr class="alt"><td class="left">Elapsed</td> | |
151 <td id="duration"> | |
152 | |
153 1 hrs | |
154 | |
155 </td></tr> | |
156 </table> | |
157 | |
158 </div> | |
159 | |
160 | |
161 </div> | |
162 </div> | |
163 <script language="javascript"> | |
164 $(document).ready(function() { | |
165 | |
166 var check = function(className) { | |
167 $("#steps").removeClass("all standard interesting").addClass(className) | |
168 } | |
169 | |
170 $("#showInteresting").click(function(e) { | |
171 check("interesting"); | |
172 }); | |
173 $("#showStandard").click(function(e) { | |
174 check("standard"); | |
175 }); | |
176 $("#showAll").click(function(e) { | |
177 check("all"); | |
178 }); | |
179 | |
180 $("input[name='hider']").each(function(){ | |
181 if ($(this).prop("checked")) { | |
182 $(this).click(); | |
183 } | |
184 }); | |
185 }); | |
186 </script> | |
187 | |
188 <footer> | |
189 <hr> | |
190 <a href="https://github.com/luci">luci</a>, | |
191 working for the <a href="https://chromium.org/">Chromium</a> project.<br> | |
192 Page built: <b><span class="local-time" data-timestamp="-6792498672871">Satu
rday, 03-Feb-01 04:05:06 UTC</span></b> | |
193 </footer> | |
194 <script> | |
195 (function () { | |
196 'use strict'; | |
197 milo.makeTimesLocal(); | |
198 milo.annotateDurations(); | |
199 $(document).tooltip({ | |
200 show: false, | |
201 hide: false | |
202 }); | |
203 })(); | |
204 </script> | |
205 <script> | |
206 (function(i,s,o,g,r,a,m){i['CrDXObject']=r;i[r]=i[r]||function(){ | |
207 (i[r].q=i[r].q||[]).push(arguments)},a=s.createElement(o), | |
208 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a
,m) | |
209 })(window,document,'script','https://storage.googleapis.com/crdx-feedback.ap
pspot.com/feedback.js','crdx'); | |
210 | |
211 crdx('setFeedbackButtonLink', 'https://bugs.chromium.org/p/chromium/issues/ent
ry?cc=hinoka@chromium.org&components=Infra%3EPlatform%3EMilo'); | |
212 </script> | |
213 | |
214 <script> | |
215 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||functio
n(){ | |
216 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createEleme
nt(o), | |
217 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefo
re(a,m) | |
218 })(window,document,'script','https://www.google-analytics.com/analytics.
js','ga'); | |
219 | |
220 ga('create', 'UA-12345-01', 'auto'); | |
221 ga('send', 'pageview'); | |
222 </script> | |
223 | |
OLD | NEW |