2019-05-01 06:59:51 +00:00
|
|
|
<div class="colstack_item colstack_head">
|
|
|
|
<div class="rowitem">
|
|
|
|
<h1>{{lang "panel_statistics_memory_head"}}</h1>
|
|
|
|
<select form="timeRangeForm" class="timeRangeSelector to_right" name="timeRange">
|
|
|
|
<option val="one-month"{{if eq .TimeRange "one-month"}} selected{{end}}>{{lang "panel_statistics_time_range_one_month"}}</option>
|
|
|
|
<option val="one-week"{{if eq .TimeRange "one-week"}} selected{{end}}>{{lang "panel_statistics_time_range_one_week"}}</option>
|
|
|
|
<option val="two-days"{{if eq .TimeRange "two-days"}} selected{{end}}>{{lang "panel_statistics_time_range_two_days"}}</option>
|
|
|
|
<option val="one-day"{{if eq .TimeRange "one-day"}} selected{{end}}>{{lang "panel_statistics_time_range_one_day"}}</option>
|
|
|
|
<option val="twelve-hours"{{if eq .TimeRange "twelve-hours"}} selected{{end}}>{{lang "panel_statistics_time_range_twelve_hours"}}</option>
|
|
|
|
<option val="six-hours"{{if eq .TimeRange "six-hours"}} selected{{end}}>{{lang "panel_statistics_time_range_six_hours"}}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<form id="timeRangeForm" name="timeRangeForm" action="/panel/analytics/memory/" method="get"></form>
|
|
|
|
<div id="panel_analytics_memory" class="colstack_graph_holder">
|
2019-05-01 23:14:07 +00:00
|
|
|
<div class="ct_chart" aria-label="{{lang "panel_statistics_memory_chart_aria"}}"></div>
|
2019-05-01 06:59:51 +00:00
|
|
|
</div>
|
|
|
|
<div class="colstack_item colstack_head">
|
|
|
|
<div class="rowitem">
|
|
|
|
<h1>{{lang "panel_statistics_details_head"}}</h1>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-05-01 23:14:07 +00:00
|
|
|
<div id="panel_analytics_posts_table" class="colstack_item rowlist" aria-label="{{lang "panel_statistics_memory_table_aria"}}">
|
2019-05-01 06:59:51 +00:00
|
|
|
{{range .ViewItems}}
|
|
|
|
<div class="rowitem panel_compactrow editable_parent">
|
2019-05-01 23:14:07 +00:00
|
|
|
<a class="panel_upshift unix_{{if or (or (or (eq $.TimeRange "six-hours") (eq $.TimeRange "twelve-hours")) (eq $.TimeRange "one-day")) (eq $.TimeRange "two-days")}}to_24_hour_time{{else}}to_date{{end}}">{{.Time}}</a>
|
2019-05-01 06:59:51 +00:00
|
|
|
<span class="panel_compacttext to_right">{{.Count}}{{.Unit}}</span>
|
|
|
|
</div>
|
2019-05-01 23:14:07 +00:00
|
|
|
{{else}}<div class="rowitem passive rowmsg">{{lang "panel_statistics_memory_no_memory"}}</div>{{end}}
|
2019-05-01 06:59:51 +00:00
|
|
|
</div>
|
|
|
|
<script>
|
|
|
|
let rawLabels = [{{range .Graph.Labels}}
|
|
|
|
{{.}},{{end}}
|
|
|
|
];
|
|
|
|
let seriesData = [{{range .Graph.Series}}[{{range .}}
|
|
|
|
{{.}},{{end}}
|
|
|
|
],{{end}}
|
|
|
|
];
|
|
|
|
let legendNames = [{{range .Graph.Legends}}
|
|
|
|
{{.}},{{end}}
|
|
|
|
];
|
2019-05-01 23:14:07 +00:00
|
|
|
|
2019-05-01 06:59:51 +00:00
|
|
|
(function(window, document, Chartist) {
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
Chartist.plugins = Chartist.plugins || {};
|
|
|
|
Chartist.plugins.byteUnits = function(options) {
|
|
|
|
options = Chartist.extend({}, {}, options);
|
|
|
|
|
|
|
|
return function byteUnits(chart) {
|
2019-05-03 08:34:18 +00:00
|
|
|
if(!chart instanceof Chartist.Line) return;
|
|
|
|
|
|
|
|
chart.on('created', function() {
|
|
|
|
console.log("running created")
|
|
|
|
const vbits = document.getElementsByClassName("ct-vertical");
|
|
|
|
if(vbits==null) return;
|
|
|
|
|
|
|
|
let tbits = [];
|
|
|
|
for(let i = 0; i < vbits.length; i++) {
|
|
|
|
tbits[i] = vbits[i].innerHTML;
|
|
|
|
}
|
|
|
|
|
|
|
|
const calc = (places) => {
|
|
|
|
if(places==3) return;
|
|
|
|
|
|
|
|
const matcher = vbits[0].innerHTML;
|
|
|
|
let allMatch = true;
|
|
|
|
for(let i = 0; i < tbits.length; i++) {
|
|
|
|
let val = convertByteUnit(tbits[i], places);
|
|
|
|
if(val!=matcher) allMatch = false;
|
|
|
|
vbits[i].innerHTML = val;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(allMatch) calc(places + 1);
|
|
|
|
}
|
|
|
|
calc(0);
|
|
|
|
});
|
2019-05-01 06:59:51 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
}(window, document, Chartist));
|
|
|
|
addInitHook("after_phrases", () => {
|
|
|
|
addInitHook("end_init", () => {
|
|
|
|
addInitHook("analytics_loaded", () => {
|
|
|
|
buildStatsChart(rawLabels, seriesData, "{{.TimeRange}}",legendNames, true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|