Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(339)

Side by Side Diff: milo/appengine/frontend/expectations/swarming.build-build-finished-logdog-expired-stream.html

Issue 2906753003: Milo: Fix swarmbucket kitchen crashes (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | milo/appengine/swarming/build.go » ('j') | milo/appengine/swarming/build.go » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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&amp;show_raw=1"> 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">Interesting 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 <b>LogDog stream not found</b>
97 <span style="float:right"
98 class="duration"
99 data-starttime="2016-03-14T10:00:01Z"
100 data-endtime="2016-03-14T11:00:18Z">
101 ( 1 hrs )</span>
102 <span>
103 <div class="step-text">Job likely failed to start.</div>
104 </span>
105 </div>
106 <ul>
107
108
109
110 <li> - no logs - </li>
111
112 </ul>
113 </li>
114
115 </ol>
116
117
118 </div>
119
120 <div class="column">
121
122 <h2>Build Properties:</h2>
123
124 <table class="info" width="100%">
125 <tr><th>Name</th><th>Value</th><th>Source</th></tr>
126
127
128
129
130 <tr>
131 <td class="left">Exit Code</td>
132 <td>1</td>
133 <td>Swarming</td>
134 </tr>
135
136
137 </table>
138
139
140
141 <h2>Timing:</h2>
142 <table class="info" width="100%">
143 <tr class="alt"><td class="left">Start</td>
144 <td>
145 <span class="local-time" data-timestamp="1457949601850">Monday, 14-Mar -16 10:00:01 UTC</span>
146 </td></tr>
147 <tr><td class="left">End</td>
148 <td>
149 <span class="local-time" data-timestamp="1457953218486">Monday, 14-Mar -16 11:00:18 UTC</span>
150 </td></tr>
151 <tr class="alt"><td class="left">Elapsed</td>
152 <td id="duration">
153
154 1 hrs
155
156 </td></tr>
157 </table>
158
159 </div>
160
161
162 </div>
163 </div>
164 <script language="javascript">
165 $(document).ready(function() {
166
167 var check = function(className) {
168 $("#steps").removeClass("all standard interesting").addClass(className)
169 }
170
171 $("#showInteresting").click(function(e) {
172 check("interesting");
173 });
174 $("#showStandard").click(function(e) {
175 check("standard");
176 });
177 $("#showAll").click(function(e) {
178 check("all");
179 });
180
181 $("input[name='hider']").each(function(){
182 if ($(this).prop("checked")) {
183 $(this).click();
184 }
185 });
186 });
187 </script>
188
189 <footer>
190 <hr>
191 <a href="https://github.com/luci">luci</a>,
192 working for the <a href="https://chromium.org/">Chromium</a> project.<br>
193 Page built: <b><span class="local-time" data-timestamp="-6792498672871">Satu rday, 03-Feb-01 04:05:06 UTC</span></b>
194 </footer>
195 <script>
196 (function () {
197 'use strict';
198 milo.makeTimesLocal();
199 milo.annotateDurations();
200 $(document).tooltip({
201 show: false,
202 hide: false
203 });
204 })();
205 </script>
206 <script>
207 (function(i,s,o,g,r,a,m){i['CrDXObject']=r;i[r]=i[r]||function(){
208 (i[r].q=i[r].q||[]).push(arguments)},a=s.createElement(o),
209 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a ,m)
210 })(window,document,'script','https://storage.googleapis.com/crdx-feedback.ap pspot.com/feedback.js','crdx');
211
212 crdx('setFeedbackButtonLink', 'https://bugs.chromium.org/p/chromium/issues/ent ry?cc=hinoka@chromium.org&components=Infra%3EPlatform%3EMilo');
213 </script>
214
215 <script>
216 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||functio n(){
217 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createEleme nt(o),
218 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefo re(a,m)
219 })(window,document,'script','https://www.google-analytics.com/analytics. js','ga');
220
221 ga('create', 'UA-12345-01', 'auto');
222 ga('send', 'pageview');
223 </script>
224
OLDNEW
« no previous file with comments | « no previous file | milo/appengine/swarming/build.go » ('j') | milo/appengine/swarming/build.go » ('J')

Powered by Google App Engine
This is Rietveld 408576698