app-attempt-table.hbs 706 B

12345678910111213141516171819202122232425262728
  1. <table id="app-attempt-table" class="table table-striped table-bordered" cellspacing="0" width="100%" height="100%">
  2. <tbody>
  3. <tr>
  4. <td>Application Attempt Id</td>
  5. <td>{{attempt.id}}</td>
  6. </tr>
  7. <tr>
  8. <td>Start Time</td>
  9. <td>{{attempt.startTime}}</td>
  10. </tr>
  11. <tr>
  12. <td>AM Container Id</td>
  13. <td>{{attempt.containerId}}</td>
  14. </tr>
  15. <tr>
  16. <td>AM Node Web UI</td>
  17. <td><a href={{attempt.nodeHttpAddress}}>{{attempt.nodeHttpAddress}}</a></td>
  18. </tr>
  19. <tr>
  20. <td>AM Node Id</td>
  21. <td>{{attempt.nodeId}}</td>
  22. </tr>
  23. <tr>
  24. <td>Log</td>
  25. <td><a href={{attempt.logsLink}}>link</a></td>
  26. </tr>
  27. </tbody>
  28. </table>