File: docker_bootstrap.html

package info (click to toggle)
phpsysinfo 3.4.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,900 kB
  • sloc: javascript: 22,511; php: 20,651; xml: 18,293; sh: 196; python: 58; makefile: 12
file content (38 lines) | stat: -rw-r--r-- 2,377 bytes parent folder | download | duplicates (2)
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
<div class="col-lg-12" id="block_docker" style="display:none;">
    <div class="card" id="panel_docker" style="display:none;">
        <div class="card-header"><span class="lang_plugin_docker_001">Docker</span>
            <span class="hostname_docker"></span>
            <div id="reload_docker" class="reload" title="reload"></div>
        </div>
        <div class="card-body">
            <div class="table-responsive">
                <table id="docker" class="table table-hover table-sm sortable">
                    <thead>
                        <tr>
                            <th id="docker_Name"><span class="lang_plugin_docker_101">Name</span></th>
                            <th><span class="lang_plugin_docker_102">CPU Usage</span></th>
                            <th><span class="lang_plugin_docker_103">Memory Usage</span></th>
                            <th class="rightCell sorttable_numeric"><span class="lang_plugin_docker_104">Memory Used</span></th>
                            <th class="rightCell sorttable_numeric"><span class="lang_plugin_docker_105">Memory Limit</span></th>
                            <th class="rightCell"><span class="lang_plugin_docker_106">Net I/O</span></th>
                            <th class="rightCell"><span class="lang_plugin_docker_107">Block I/O</span></th>
                            <th class="rightCell sorttable_numeric"><span class="lang_plugin_docker_108">PIDs</span></th>
                        </tr>
                    </thead>
                    <tbody id="docker-data">
                        <tr>
                            <th><span data-bind="Name"></span></th>
                            <td><span data-bind="CPUUsage"></span></td>
                            <td><span data-bind="MemoryUsage"></span></td>
                            <td class="rightCell"><span data-bind="MemoryUsed"></span></td>
                            <td class="rightCell"><span data-bind="MemoryLimit"></span></td>
                            <td class="rightCell"><span data-bind="NetIO"></span></td>
                            <td class="rightCell"><span data-bind="BlockIO"></span></td>
                            <td class="rightCell"><span data-bind="PIDs"></span></td>
                        </tr>
                    </tbody>
                </table>
            </div>
        </div>
    </div>
</div>