yarn-app-attempts.hbs 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {{!
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. }}
  18. {{breadcrumb-bar breadcrumbs=breadcrumbs}}
  19. <div class="col-md-12 container-fluid">
  20. <div class="row">
  21. <div class="col-md-2 container-fluid">
  22. <div class="panel panel-default">
  23. <div class="panel-heading">
  24. {{#if service}}
  25. Service
  26. {{else}}
  27. Application
  28. {{/if}}
  29. </div>
  30. <div class="panel-body">
  31. <ul class="nav nav-pills nav-stacked" id="stacked-menu">
  32. <ul class="nav nav-pills nav-stacked collapse in">
  33. {{#link-to 'yarn-app' tagName="li"}}
  34. {{#link-to 'yarn-app' model.appId (query-params service=service)}}Information
  35. {{/link-to}}
  36. {{/link-to}}
  37. {{#link-to 'yarn-app-attempts' tagName="li"}}
  38. {{#link-to 'yarn-app-attempts' model.appId (query-params service=service)}}Attempts List
  39. {{/link-to}}
  40. {{/link-to}}
  41. </ul>
  42. </ul>
  43. </div>
  44. </div>
  45. </div>
  46. <div class="col-md-10 container-fluid">
  47. <div class="row">
  48. {{timeline-view parent-id="attempt-timeline-div" my-id="timeline-view" height="100%" rmModel=model.attempts label="shortAppAttemptId" attemptModel=true serviceName=service}}
  49. </div>
  50. </div>
  51. </div>
  52. </div>
  53. {{outlet}}