Back to home page

OSCL-LXR

 
 

    


0001 <!--
0002  Licensed to the Apache Software Foundation (ASF) under one or more
0003  contributor license agreements.  See the NOTICE file distributed with
0004  this work for additional information regarding copyright ownership.
0005  The ASF licenses this file to You under the Apache License, Version 2.0
0006  (the "License"); you may not use this file except in compliance with
0007  the License.  You may obtain a copy of the License at
0008 
0009      http://www.apache.org/licenses/LICENSE-2.0
0010 
0011  Unless required by applicable law or agreed to in writing, software
0012  distributed under the License is distributed on an "AS IS" BASIS,
0013  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
0014  See the License for the specific language governing permissions and
0015  limitations under the License.
0016 -->
0017 
0018 <script id="history-summary-template" type="text/html">
0019 <table id="history-summary-table" class="table table-striped compact">
0020   <thead>
0021     <tr>
0022       <th>
0023         <span data-toggle="tooltip" data-placement="top" title="Spark version of this application.">
0024           Version
0025         </span>
0026       </th>
0027       <th>
0028         <span data-toggle="tooltip" data-placement="top" title="ID of this application.">
0029           App ID
0030         </span>
0031       </th>
0032       <th>
0033         <span data-toggle="tooltip" data-placement="top" title="Name of this application.">
0034           App Name
0035         </span>
0036       </th>
0037       {{#hasMultipleAttempts}}
0038       <th>
0039         <span data-toggle="tooltip" data-placement="top" title="The attempt ID of this application since one application might be launched several times">
0040           Attempt ID
0041         </span>
0042       </th>
0043       {{/hasMultipleAttempts}}
0044       <th>
0045         <span data-toggle="tooltip" data-placement="top" title="Started time of this application.">
0046           Started
0047         </span>
0048       </th>
0049       {{#showCompletedColumns}}
0050       <th>
0051         <span data-toggle="tooltip" data-placement="top" title="The completed time of this application.">
0052           Completed
0053         </span>
0054       </th>
0055       <th>
0056         <span data-toggle="tooltip" data-placement="top" title="The duration time of this application.">
0057           Duration
0058         </span>
0059       </th>
0060       {{/showCompletedColumns}}
0061       <th>
0062         <span data-toggle="tooltip" data-placement="top" title="The Spark user of this application">
0063           Spark User
0064         </span>
0065       </th>
0066       <th>
0067         <span data-toggle="tooltip" data-placement="top" title="The timestamp of the last updating on this application">
0068           Last Updated
0069         </span>
0070       </th>
0071       <th>
0072         <span data-toggle="tooltip" data-placement="top" title="Download the event log for this application">
0073           Event Log
0074         </span>
0075       </th>
0076   </thead>
0077   <tbody>
0078   {{#applications}}
0079     <tr>
0080       <td {{#hasMultipleAttempts}}style="background-color:#fff"{{/hasMultipleAttempts}}>{{version}}</td>
0081       <td {{#hasMultipleAttempts}}style="background-color:#fff"{{/hasMultipleAttempts}}><span title="{{id}}"><a href="{{uiroot}}/history/{{id}}/{{num}}/jobs/">{{id}}</a></span></td>
0082       <td {{#hasMultipleAttempts}}style="background-color:#fff"{{/hasMultipleAttempts}}>{{name}}</td>
0083       {{#attempts}}
0084       {{#hasMultipleAttempts}}
0085       <td><a href="{{uiroot}}/history/{{id}}/{{attemptId}}/jobs/">{{attemptId}}</a></td>
0086       {{/hasMultipleAttempts}}
0087       <td>{{startTime}}</td>
0088       {{#showCompletedColumns}}
0089       <td>{{endTime}}</td>
0090       <td><span title="{{durationMillisec}}">{{duration}}</span></td>
0091       {{/showCompletedColumns}}
0092       <td>{{sparkUser}}</td>
0093       <td>{{lastUpdated}}</td>
0094       <td><a href="{{log}}" class="btn btn-info btn-mini">Download</a></td>
0095       {{/attempts}}
0096     </tr>
0097   {{/applications}}
0098   </tbody>
0099 </table>
0100 </script>