mirror of
https://github.com/apache/impala.git
synced 2025-12-19 18:12:08 -05:00
Also upgrade DataTables to 1.10.18 at the same time.. They were obtained from https://datatables.net/download/ and https://getbootstrap.com/docs/4.3/getting-started/download/. Included the version number in the css and js filenames to avoid potential issues with stale versions being cached (I got tripped up by this). I had to do some additional work to get the UI to look right after the upgrade: * added additional style classes to HTML elements for nav and breadcrumb styles - these are required in bootstrap 4. * added styling for plan visualisation graph for it to appear similar to the old graph. * Added styling for <pre> to get box around text. Testing: Manually clicked through the web UI to see if anything looked wrong or didn't function correctly. Change-Id: Ib58f407574f590825d208424a8c0fd101b0a19a7 Reviewed-on: http://gerrit.cloudera.org:8080/14119 Reviewed-by: Tim Armstrong <tarmstrong@cloudera.com> Reviewed-by: Quanlong Huang <huangquanlong@gmail.com> Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
33 lines
2.2 KiB
Cheetah
33 lines
2.2 KiB
Cheetah
<!--
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
or more contributor license agreements. See the NOTICE file
|
|
distributed with this work for additional information
|
|
regarding copyright ownership. The ASF licenses this file
|
|
to you under the Apache License, Version 2.0 (the
|
|
"License"); you may not use this file except in compliance
|
|
with the License. You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
software distributed under the License is distributed on an
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
KIND, either express or implied. See the License for the
|
|
specific language governing permissions and limitations
|
|
under the License.
|
|
-->
|
|
|
|
<h3>Query <tt>{{query_id}}</tt></h3>
|
|
{{?status}}<h4><em>Status:</em> <span id="status">{{status}}</span></h4>{{/status}}
|
|
|
|
<ul class="nav nav-tabs">
|
|
<li class="nav-item" id="plan-tab" role="presentation"><a class="nav-link" href="{{ __common__.host-url }}/query_plan?query_id={{query_id}}">Plan</a></li>
|
|
<li class="nav-item" id="stmt-tab" role="presentation"><a class="nav-link" href="{{ __common__.host-url }}/query_stmt?query_id={{query_id}}">Query</a></li>
|
|
<li class="nav-item" id="plan-text-tab" role="presentation"><a class="nav-link" href="{{ __common__.host-url }}/query_plan_text?query_id={{query_id}}">Text plan</a></li>
|
|
<li class="nav-item" id="summary-tab" role="presentation"><a class="nav-link" href="{{ __common__.host-url }}/query_summary?query_id={{query_id}}">Summary</a></li>
|
|
<li class="nav-item" id="profile-tab" role="presentation"><a class="nav-link" href="{{ __common__.host-url }}/query_profile?query_id={{query_id}}">Profile</a></li>
|
|
<li class="nav-item" id="memory-tab" role="presentation"><a class="nav-link" href="{{ __common__.host-url }}/query_memory?query_id={{query_id}}">Memory</a></li>
|
|
<li class="nav-item" id="backends-tab" role="presentation"><a class="nav-link" href="{{ __common__.host-url }}/query_backends?query_id={{query_id}}">Backends</a></li>
|
|
<li class="nav-item" id="finstances-tab" role="presentation"><a class="nav-link" href="{{ __common__.host-url }}/query_finstances?query_id={{query_id}}">Fragment Instances</a></li>
|
|
</ul>
|