File: template_example.tpl

package info (click to toggle)
mysqltuner 2.7.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 47,992 kB
  • sloc: perl: 6,725; sh: 320; makefile: 92
file content (117 lines) | stat: -rw-r--r-- 4,184 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!doctype html>
<html lang="en">
  <head>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">

    <style type="text/css" media="screen">
      /* Sticky footer styles
         -------------------------------------------------- */
    html {
      position: relative;
      min-height: 100%;
    }
    body {
      /* Margin bottom by footer height */
      margin-bottom: 10px;
    }
    .footer {
      position: absolute;
      #margin-left: 5px;
      bottom: 0;
      width: 100%;
      /* Set the fixed height of the footer here */
      height: 30px;
      line-height: 30px; /* Vertically center the text there */
      background-color: #f5f5f5;
    }


    /* /* Custom page CSS
    /*   -------------------------------------------------- */
    /*/* Not required for template or sticky footer method. */

    /*body > .container {
    /*  padding: 60px 15px 0;
    /*}

    /*.footer > .container {
    /*  padding-right: 15px;
    /*  padding-left: 15px;
    /*}

    /*code {
    /*  font-size: 80%;
    /*}*/
    .code-pre {
     background-color: #eee;
     padding: 1rem;
     font-size: 80%;
    }
    </style>
    <title>MySQL Tuner</title>
  </head>
  <body>
    <div class="container">
      <div class="pricing-header px-3 py-3 pt-md-5 pb-md-4 mx-auto text-center">
      <H1>MySQL Tuner</H1>
      </div>
      <ul class="nav nav-tabs" role="tablist">
        <li class="active" class="nav-item">
          <a class="nav-link" id="home-tab"  data-toggle="tab" role="tab" aria-controls="home" aria-selected="true" href="#home">Home</a>
        </li>
        <li class="nav-item">
          <a class="nav-link" id="debug-tab" data-toggle="tab" role="tab" aria-controls="debug" aria-selected="false" href="#debug">Debug</a>
        </li>
      </ul>

      <div class="tab-content">
        <div id="home" class="tab-pane active">
          <h3>Home</h3>
          <h5>Report date: [% localtime %]</h5>
          <h5>Report host: [% $data{'Variables'}{'hostname'} %]</h5>
          <h5>Report OS: [% $data{'OS'}{'OS Type'} %], Architecture:[% $data{'OS'}{'Architecture'} %], Ram: [% $data{'OS'}{'Physical Memory'}{'pretty'} %]</h5>
          <h5>Server version: [% $data{'Variables'}{'version'} %], [% $data{'Variables'}{'version_compile_machine'} %], [% $data{'Status'}{'version_comment'} %]</h5>
          <hr/>
          <h3>Recommendations</h3>
          <ul>
            [%
            foreach $i ( @{$data{'Recommendations'}} ) {
              $OUT .= "<li>$i</li>";
            }
            %]
          </ul>
          <h3>Adjust variables</h3>
          <ul>
            [%
            foreach $i ( @{$data{'Adjust variables'}} ) {
              $OUT .= "<li>$i</li>";
            }
            %]
          </ul>
          <hr/>
        </div>
        <div id="debug" class="tab-pane">
          <h3>Raw Result Data Structure</h3>
          <pre class="code-pre"><code class="language-json" data-lang="json">[% $debug %]</code></pre>
          <hr/>
        </div>

      </div>

      <footer class="footer">
        <div class="container">
          <span class="text-muted">MySQL Tuner 1.7.13</span>
        </div>
      </footer>
    </div>
    <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
  </body>
</html>
<!-- vim: set ft=html ts=2 sw=2 tw=999 et :-->