b8392c4c50
Signed-off-by: Antonio Navarro Perez <antnavper@gmail.com>
80 lines
No EOL
2.4 KiB
JavaScript
80 lines
No EOL
2.4 KiB
JavaScript
var GeneralChart = {
|
|
_downloadData: [],
|
|
_uploadData: [],
|
|
_chart: null,
|
|
update: function (download, upload) {
|
|
if (this._downloadData.length > 20) {
|
|
this._uploadData.shift();
|
|
this._downloadData.shift();
|
|
}
|
|
var date = new Date();
|
|
this._downloadData.push({
|
|
x: date,
|
|
y: download,
|
|
});
|
|
this._uploadData.push({
|
|
x: date,
|
|
y: upload,
|
|
});
|
|
this._chart.update();
|
|
},
|
|
init: function () {
|
|
var ctx = document.getElementById('chart-general-network').getContext('2d');
|
|
this._chart = new Chart(ctx, {
|
|
type: 'line',
|
|
data: {
|
|
datasets: [
|
|
{
|
|
label: 'Download Speed',
|
|
fill: false,
|
|
backgroundColor: '#859900',
|
|
borderColor: '#859900',
|
|
borderWidth: 2,
|
|
data: this._downloadData,
|
|
|
|
},
|
|
{
|
|
label: 'Upload Speed',
|
|
fill: false,
|
|
backgroundColor: '#839496',
|
|
borderColor: '#839496',
|
|
borderWidth: 2,
|
|
data: this._uploadData,
|
|
|
|
},
|
|
]
|
|
},
|
|
options: {
|
|
title: {
|
|
text: 'Download and Upload speed'
|
|
},
|
|
scales: {
|
|
xAxes: [{
|
|
scaleLabel: {
|
|
display: false,
|
|
},
|
|
gridLines: {
|
|
display: false,
|
|
},
|
|
ticks: {
|
|
display: false,
|
|
},
|
|
type: 'time',
|
|
}],
|
|
yAxes: [{
|
|
scaleLabel: {
|
|
display: false,
|
|
},
|
|
type: 'linear',
|
|
ticks: {
|
|
userCallback: function (tick) {
|
|
return Humanize.ibytes(tick, 1024) + "/s";
|
|
},
|
|
beginAtZero: true
|
|
},
|
|
}]
|
|
},
|
|
}
|
|
});
|
|
}
|
|
} |