blob: d89a5b2fbf28a218f5006e8ba5b19574ded718ad (
plain) (
blame)
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
|
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-heading">
{{lang_modelStats}}
</div>
<div class="panel-body">
<div class="row">
<div class="col-md-8">
<table class="stupidtable table table-condensed table-striped table-responsive">
<thead>
<tr>
<th data-sort="string">{{lang_modelName}}</th>
<th data-sort="int" class="text-right text-nowrap">{{lang_cpuCores}}</th>
<th data-sort="int" class="text-right text-nowrap">{{lang_modelCount}}</th>
</tr>
</thead>
<tbody>
{{#rows}}
<tr id="{{id}}" class="{{collapse}}">
<td data-sort-value="{{systemmodel}}" class="text-left text-nowrap filter-col" data-filter-col="systemmodel">
<table style="width:100%; table-layout: fixed;"><tr><td style="overflow:hidden;text-overflow: ellipsis;">
<a class="filter-val" data-filter-val="{{systemmodel}}" href="?do=Statistics&show=summary&filters={{query}}~,~systemmodel={{urlsystemmodel}}">{{systemmodel}}</a>
</td></tr></table>
</td>
<td data-sort-value="{{cores}}" class="text-right filter-col" data-filter-col="realcores">
<a class="filter-val" data-filter-val="{{cores}}" href="?do=Statistics&show=summary&filters={{query}}~,~realcores={{cores}}">{{cores}}</a>
</td>
<td class="text-right">{{count}}</td>
</tr>
{{/rows}}
<tr class="slx-decollapse">
<td colspan="3">
<span class="btn-group btn-group-justified">
<span class="btn btn-default btn-sm">
<span class="glyphicon glyphicon-menu-down"></span>
</span>
</span>
</td>
</tr>
</tbody>
</table>
</div>
<div class="col-md-4">
<canvas id="cpumodelchart" style="width:100%;height:380px"></canvas>
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function() {
var data = {{{json}}};
var sel = false;
new Chart(document.getElementById('cpumodelchart').getContext('2d')).Pie(data, {
animation: false,
tooltipTemplate: "<%if (label){%><%=label%><%}%>",
customTooltips: function(tooltip) {
if (sel !== false) sel.removeClass('slx-bold');
if (!tooltip) {
sel = false;
return;
}
sel = $('#' + tooltip.text);
sel.addClass('slx-bold');
}
});
}, false);
</script>
</div>
</div>
</div>
</div>
</div>
|