| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226 |
- {% extends "layout.html" %}
- {% block head %}
- {{ super() }}
- <style type="text/css">
- .table {
- font-size: 12px;
- border-width: 1px;
- line-height: 20px;
- }
- .table > thead > tr > th,
- .table > tfoot > tr > th {
- color: #999999;
- font-weight: normal;
- border-bottom: 0 solid #e1e6eb;
- background-color: #F5F6FA;
- }
-
- .table > tbody > tr > td {
- color: #424547;
- }
- .table-bordered > tbody > tr {
- padding-top: 10px;
- padding-bottom: 10px;
- }
- .table-bordered > thead > tr > th,
- .table-bordered > tbody > tr > th,
- .table-bordered > tfoot > tr > th,
- .table-bordered > thead > tr > td,
- .table-bordered > tbody > tr > td,
- .table-bordered > tfoot > tr > td {
- border-style: solid;
- border-width: 1px 0 0 0;
- }
- .btn,
- .form-control,
- .modal-content {
- border-radius: 0 !important;
- }
- .btn-shortcut {
- font-size: 12px !important;
- padding: 0 26px;
- }
- .show {
- display: inline-block !important;
- }
- .tr-selected td,
- .tr-selected {
- color: #000 !important;
- background: #fffdf4 !important;
- }
- </style>
- {% endblock head %}
- {% block content %}
- <script type="text/javascript">
- var page = 1;
- var page_size = 10;
- var keyword = '';
- var resource_path = window.location.pathname;
- var cur_url = resource_path;
- $(document).ready(function() {
- page_size = $('#page_size').val();
- cur_url = resource_path + '?page=' + page + '&page_size=' + page_size;
- var last_ready = null;
- $('#content_search').keydown(function() {
- if (last_ready !== null) {
- clearTimeout(last_ready);
- }
- last_ready = setTimeout(function () {
- keyword = $('#content_search').val();
- cur_url = resource_path + '?page=' + page + '&page_size=' + page_size;
- if (keyword.length > 0) {
- cur_url = resource_path + '?page=' + page + '&page_size=' + page_size + '&keyword=' + keyword;
- }
- window.location.href=cur_url;
- }, 1000);
- });
- $('#page_size').change(function () {
- keyword = $('#content_search').val();
- page_size = $('#page_size').val();
- cur_url = resource_path + '?page=' + page + '&page_size=' + page_size;
- if (keyword.length > 0) {
- cur_url = resource_path + '?page=' + page + '&page_size=' + page_size + '&keyword=' + keyword;
- }
- window.location.href=cur_url;
- });
- $('body').addClass('add-transition');
- $('.add-page-transition').on('click', function(){
- var transAttr = $(this).attr('data-transition');
- $('.add-transition').attr('class', 'add-transition');
- $('.add-transition').addClass(transAttr);
- });
- });
- function refresh() {
- keyword = $('#content_search').val();
- page = $('#pagination li.active a').text();
- page_size = $('#page_size').val();
- cur_url = resource_path + '?page=' + page + '&page_size=' + page_size;
- if (keyword.length > 0) {
- cur_url = resource_path + '?page=' + page + '&page_size=' + page_size + '&keyword=' + keyword;
- }
- window.location.href=cur_url;
- }
- </script>
- <div class="panel">
- <div class="panel-body">
- <h3 class="title-hero" style="font-size: 24px;">
- 平台日志
- </h3>
- <div>
- <div id="datatable-row-highlight_wrapper" class="dataTables_wrapper form-inline">
- <div class="row" style="padding: 10px 10px 10px 0; width: 100%;">
- <div class="col-sm-12" style="padding-right: 0;">
- <div id="datatable-row-highlight_filter" class="dataTables_filter" style="display: inline-block;">
- <input id="content_search" type="search" class="form-control" placeholder="模糊搜索..." value="{%- if keyword -%} {{ keyword }} {%- endif -%}" style="margin-left: 0; border-radius: 0;">
- </div>
- <div class="pull-right">
- <button class="btn btn-default" onclick="refresh()" style="border-radius: 0;"><span class="glyph-icon icon-elusive-arrows-cw"></span></button>
- </div>
- </div>
- </div>
- <table id="log_list" class="table table-bordered table-hover" cellspacing="0" width="100%" role="grid"
- style="width: 100%; margin-bottom: 0; border-bottom-width: 0;">
- <thead>
- <tr role="row">
- <th>ID</th>
- <th>类型</th>
- <th>时间</th>
- <th>源</th>
- <th>日志</th>
- </tr>
- </thead>
- <tbody>
- {% for item in logs_ret.data %}
- <tr role="row" class="odd" style="
- {% if item.type == 3 %}
- background-color: #ffffff;
- {% elif item.type == 4 %}
- background-color: #bbf6ff;
- {% elif item.type == 0 %}
- background-color: #ffbaba;
- {% elif item.type == 1 %}
- background-color: #fd4949;
- {% elif item.type == 2 %}
- background-color: #fff580;
- {% else %}
- background-color: #ababab;
- {% endif %}">
- <td>{{ item.id }}</td>
- <td>
- {% if item.type == 3 %}
- Info
- {% elif item.type == 4 %}
- Debug
- {% elif item.type == 0 %}
- Critical
- {% elif item.type == 1 %}
- Error
- {% elif item.type == 2 %}
- Warn
- {% else %}
- Unknown
- {% endif %}
- </td>
- <td>{{ format_datetime_by_ts(item.timestamp) }}</td>
- <td>{{ item.host }}</td>
- <td>{{ item.message }}<a href="#" data-toggle="tooltip" data-placement="left" style="color: royalblue;{% if item.full_message is none or item.full_message|length < 256 %}display: none;{% endif %}" title="{{ item.full_message }}">More</a></td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
- <table class="table table-bordered" style="border-top-width: 0; z-index: 99; position: sticky; bottom: 0;">
- <tfoot>
- <tr style="height: 70px;">
- <th>
- <div class="row">
- <div class="col-sm-6">
- </div>
- <div class="col-sm-3" style="font-size: 12px; padding-top: 5px; text-align: right;">
- 共有{{ logs_ret.paging.total }}条,每页显示:
- <select id="page_size" name="datatable-row-highlight_length" title="page_size" class="form-control" style="height: 22px; vertical-align: baseline;">
- <option value="20" {% if page_size == 20 %} selected {% endif %}>20</option>
- <option value="50" {% if page_size == 50 %} selected {% endif %}>50</option>
- <option value="100" {% if page_size == 100 %} selected {% endif %}>100</option>
- </select> 条
- </div>
- <div class="col-sm-3" style="text-align: left;">
- <div class="dataTables_paginate paging_bootstrap" id="datatable-row-highlight_paginate">
- <ul id="pagination" class="pagination">
- <li class="{% if page == 1 %} disabled {% endif %}">
- <a href="{{ resource_path }}?page={{ page - 1 }}&page_size={{ page_size }}{% if keyword %}&keyword={{ keyword }}{% endif %}{% if order_by %}&order_by={{ order_by }}{% endif %}{% if order %}&order={{ order }}{% endif %}">«</a>
- </li>
- {% for item in pages %}
- <li class="{% if item == page %} active {% endif %}">
- <a href="{{ resource_path }}?page={{ item }}&page_size={{ page_size }}{% if keyword %}&keyword={{ keyword }}{% endif %}{% if order_by %}&order_by={{ order_by }}{% endif %}{% if order %}&order={{ order }}{% endif %}">{{ item }}</a>
- </li>
- {% endfor %}
- <li class="{% if page == last_page %} disabled {% endif %}">
- <a href="{{ resource_path }}?page={{ page + 1 }}&page_size={{ page_size }}{% if keyword %}&keyword={{ keyword }}{% endif %}{% if order_by %}&order_by={{ order_by }}{% endif %}{% if order %}&order={{ order }}{% endif %}">»</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </th>
- </tr>
- </tfoot>
- </table>
- </div>
- </div>
- </div>
- </div>
- {% endblock content %}
|