2018-08-23 22:37:19 +02:00
|
|
|
<template>
|
2018-08-25 05:28:05 +02:00
|
|
|
<div class="gkgckalzgidaygcxnugepioremxvxvpt">
|
2018-08-23 22:37:19 +02:00
|
|
|
<header>
|
|
|
|
<b>%i18n:@title%:</b>
|
|
|
|
<select v-model="chartType">
|
2018-08-23 23:41:53 +02:00
|
|
|
<optgroup label="%i18n:@users%">
|
2018-08-24 07:55:58 +02:00
|
|
|
<option value="users">%i18n:@charts.users%</option>
|
|
|
|
<option value="users-total">%i18n:@charts.users-total%</option>
|
2018-08-23 23:41:53 +02:00
|
|
|
</optgroup>
|
|
|
|
<optgroup label="%i18n:@notes%">
|
2018-08-24 07:55:58 +02:00
|
|
|
<option value="notes">%i18n:@charts.notes%</option>
|
|
|
|
<option value="local-notes">%i18n:@charts.local-notes%</option>
|
|
|
|
<option value="remote-notes">%i18n:@charts.remote-notes%</option>
|
|
|
|
<option value="notes-total">%i18n:@charts.notes-total%</option>
|
2018-08-23 23:41:53 +02:00
|
|
|
</optgroup>
|
|
|
|
<optgroup label="%i18n:@drive%">
|
2018-08-24 07:55:58 +02:00
|
|
|
<option value="drive-files">%i18n:@charts.drive-files%</option>
|
|
|
|
<option value="drive-files-total">%i18n:@charts.drive-files-total%</option>
|
|
|
|
<option value="drive">%i18n:@charts.drive%</option>
|
|
|
|
<option value="drive-total">%i18n:@charts.drive-total%</option>
|
2018-08-23 23:41:53 +02:00
|
|
|
</optgroup>
|
2018-09-14 22:40:58 +02:00
|
|
|
<optgroup label="%i18n:@network%">
|
|
|
|
<option value="network-requests">%i18n:@charts.network-requests%</option>
|
|
|
|
<option value="network-time">%i18n:@charts.network-time%</option>
|
|
|
|
<option value="network-usage">%i18n:@charts.network-usage%</option>
|
|
|
|
</optgroup>
|
2018-08-23 22:37:19 +02:00
|
|
|
</select>
|
|
|
|
<div>
|
2018-08-24 07:55:58 +02:00
|
|
|
<span @click="span = 'day'" :class="{ active: span == 'day' }">%i18n:@per-day%</span> | <span @click="span = 'hour'" :class="{ active: span == 'hour' }">%i18n:@per-hour%</span>
|
2018-08-23 22:37:19 +02:00
|
|
|
</div>
|
|
|
|
</header>
|
2018-08-24 00:17:17 +02:00
|
|
|
<div>
|
|
|
|
<x-chart v-if="chart" :data="data[0]" :opts="data[1]"/>
|
|
|
|
</div>
|
2018-08-23 22:37:19 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-08-25 05:28:05 +02:00
|
|
|
import XChart from './charts.chart.ts';
|
2018-08-23 22:37:19 +02:00
|
|
|
|
2018-08-25 08:25:16 +02:00
|
|
|
const colors = {
|
|
|
|
local: 'rgb(246, 88, 79)',
|
|
|
|
remote: 'rgb(65, 221, 222)',
|
|
|
|
|
|
|
|
localPlus: 'rgb(52, 178, 118)',
|
|
|
|
remotePlus: 'rgb(158, 255, 209)',
|
|
|
|
localMinus: 'rgb(255, 97, 74)',
|
2018-09-14 22:40:58 +02:00
|
|
|
remoteMinus: 'rgb(255, 149, 134)',
|
|
|
|
|
|
|
|
incoming: 'rgb(52, 178, 118)',
|
|
|
|
outgoing: 'rgb(255, 97, 74)',
|
2018-08-25 08:25:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const rgba = (color: string): string => {
|
|
|
|
return color.replace('rgb', 'rgba').replace(')', ', 0.1)');
|
|
|
|
};
|
|
|
|
|
2018-10-21 03:24:56 +02:00
|
|
|
const limit = 35;
|
|
|
|
|
2018-08-23 22:37:19 +02:00
|
|
|
export default Vue.extend({
|
|
|
|
components: {
|
|
|
|
XChart
|
|
|
|
},
|
2018-08-25 08:25:16 +02:00
|
|
|
|
2018-08-23 22:37:19 +02:00
|
|
|
data() {
|
|
|
|
return {
|
2018-10-21 03:24:56 +02:00
|
|
|
now: null,
|
2018-08-24 00:23:04 +02:00
|
|
|
chart: null,
|
2018-08-24 07:55:58 +02:00
|
|
|
chartType: 'notes',
|
2018-08-23 22:37:19 +02:00
|
|
|
span: 'hour'
|
|
|
|
};
|
|
|
|
},
|
2018-08-25 08:25:16 +02:00
|
|
|
|
2018-08-23 22:37:19 +02:00
|
|
|
computed: {
|
|
|
|
data(): any {
|
|
|
|
if (this.chart == null) return null;
|
|
|
|
switch (this.chartType) {
|
2018-08-24 07:55:58 +02:00
|
|
|
case 'users': return this.usersChart(false);
|
|
|
|
case 'users-total': return this.usersChart(true);
|
|
|
|
case 'notes': return this.notesChart('combined');
|
|
|
|
case 'local-notes': return this.notesChart('local');
|
|
|
|
case 'remote-notes': return this.notesChart('remote');
|
|
|
|
case 'notes-total': return this.notesTotalChart();
|
2018-08-25 01:35:41 +02:00
|
|
|
case 'drive': return this.driveChart();
|
|
|
|
case 'drive-total': return this.driveTotalChart();
|
|
|
|
case 'drive-files': return this.driveFilesChart();
|
|
|
|
case 'drive-files-total': return this.driveFilesTotalChart();
|
2018-09-14 22:40:58 +02:00
|
|
|
case 'network-requests': return this.networkRequestsChart();
|
|
|
|
case 'network-time': return this.networkTimeChart();
|
|
|
|
case 'network-usage': return this.networkUsageChart();
|
2018-08-23 22:37:19 +02:00
|
|
|
}
|
|
|
|
},
|
2018-08-25 08:25:16 +02:00
|
|
|
|
2018-08-23 22:37:19 +02:00
|
|
|
stats(): any[] {
|
2018-10-21 00:10:35 +02:00
|
|
|
const stats =
|
2018-08-23 22:37:19 +02:00
|
|
|
this.span == 'day' ? this.chart.perDay :
|
|
|
|
this.span == 'hour' ? this.chart.perHour :
|
2018-10-21 00:10:35 +02:00
|
|
|
null;
|
|
|
|
|
|
|
|
return stats;
|
2018-08-23 22:37:19 +02:00
|
|
|
}
|
|
|
|
},
|
2018-08-25 08:25:16 +02:00
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
async created() {
|
2018-10-21 03:24:56 +02:00
|
|
|
this.now = new Date();
|
2018-10-21 02:20:11 +02:00
|
|
|
|
|
|
|
const [perHour, perDay] = await Promise.all([Promise.all([
|
|
|
|
(this as any).api('charts/users', { limit: limit, span: 'hour' }),
|
|
|
|
(this as any).api('charts/notes', { limit: limit, span: 'hour' }),
|
|
|
|
(this as any).api('charts/drive', { limit: limit, span: 'hour' }),
|
|
|
|
(this as any).api('charts/network', { limit: limit, span: 'hour' })
|
|
|
|
]), Promise.all([
|
|
|
|
(this as any).api('charts/users', { limit: limit, span: 'day' }),
|
|
|
|
(this as any).api('charts/notes', { limit: limit, span: 'day' }),
|
|
|
|
(this as any).api('charts/drive', { limit: limit, span: 'day' }),
|
|
|
|
(this as any).api('charts/network', { limit: limit, span: 'day' })
|
|
|
|
])]);
|
|
|
|
|
|
|
|
const chart = {
|
2018-10-21 03:24:56 +02:00
|
|
|
perHour: {
|
|
|
|
users: perHour[0],
|
|
|
|
notes: perHour[1],
|
|
|
|
drive: perHour[2],
|
|
|
|
network: perHour[3]
|
|
|
|
},
|
|
|
|
perDay: {
|
|
|
|
users: perDay[0],
|
|
|
|
notes: perDay[1],
|
|
|
|
drive: perDay[2],
|
|
|
|
network: perDay[3]
|
|
|
|
}
|
2018-10-21 02:20:11 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
this.chart = chart;
|
2018-08-24 00:23:04 +02:00
|
|
|
},
|
2018-08-25 08:25:16 +02:00
|
|
|
|
2018-08-23 22:37:19 +02:00
|
|
|
methods: {
|
2018-10-21 03:24:56 +02:00
|
|
|
getDate(i: number) {
|
|
|
|
const y = this.now.getFullYear();
|
|
|
|
const m = this.now.getMonth();
|
|
|
|
const d = this.now.getDate();
|
|
|
|
const h = this.now.getHours();
|
|
|
|
|
|
|
|
return (
|
|
|
|
this.span == 'day' ? new Date(y, m, d - i) :
|
|
|
|
this.span == 'hour' ? new Date(y, m, d, h - i) :
|
|
|
|
null
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
2018-08-24 07:55:58 +02:00
|
|
|
notesChart(type: string): any {
|
2018-10-21 03:24:56 +02:00
|
|
|
const data = [];
|
|
|
|
|
|
|
|
for (let i = 0; i < limit; i++) {
|
|
|
|
data.push({
|
|
|
|
date: this.getDate(i),
|
|
|
|
normal: type == 'local' ? this.stats.notes.local.diffs.normal[i] : type == 'remote' ? this.stats.notes.remote.diffs.normal[i] : this.stats.notes.local.diffs.normal[i] + this.stats.notes.remote.diffs.normal[i],
|
|
|
|
reply: type == 'local' ? this.stats.notes.local.diffs.reply[i] : type == 'remote' ? this.stats.notes.remote.diffs.reply[i] : this.stats.notes.local.diffs.reply[i] + this.stats.notes.remote.diffs.reply[i],
|
|
|
|
renote: type == 'local' ? this.stats.notes.local.diffs.renote[i] : type == 'remote' ? this.stats.notes.remote.diffs.renote[i] : this.stats.notes.local.diffs.renote[i] + this.stats.notes.remote.diffs.renote[i],
|
|
|
|
all: type == 'local' ? (this.stats.notes.local.inc[i] + -this.stats.notes.local.dec[i]) : type == 'remote' ? (this.stats.notes.remote.inc[i] + -this.stats.notes.remote.dec[i]) : (this.stats.notes.local.inc[i] + -this.stats.notes.local.dec[i]) + (this.stats.notes.remote.inc[i] + -this.stats.notes.remote.dec[i])
|
|
|
|
});
|
|
|
|
}
|
2018-08-23 22:37:19 +02:00
|
|
|
|
|
|
|
return [{
|
|
|
|
datasets: [{
|
2018-08-23 23:41:53 +02:00
|
|
|
label: 'All',
|
|
|
|
fill: false,
|
|
|
|
borderColor: '#555',
|
|
|
|
borderWidth: 2,
|
2018-08-24 02:39:16 +02:00
|
|
|
borderDash: [4, 4],
|
2018-08-23 23:41:53 +02:00
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
|
|
|
data: data.map(x => ({ t: x.date, y: x.all }))
|
|
|
|
}, {
|
2018-08-24 07:55:58 +02:00
|
|
|
label: 'Renotes',
|
2018-08-24 01:56:57 +02:00
|
|
|
fill: true,
|
2018-08-24 07:55:58 +02:00
|
|
|
backgroundColor: 'rgba(161, 222, 65, 0.1)',
|
|
|
|
borderColor: '#a1de41',
|
2018-08-23 22:37:19 +02:00
|
|
|
borderWidth: 2,
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
2018-08-24 07:55:58 +02:00
|
|
|
data: data.map(x => ({ t: x.date, y: x.renote }))
|
2018-08-23 22:37:19 +02:00
|
|
|
}, {
|
|
|
|
label: 'Replies',
|
2018-08-24 01:56:57 +02:00
|
|
|
fill: true,
|
|
|
|
backgroundColor: 'rgba(247, 121, 108, 0.1)',
|
2018-08-23 22:37:19 +02:00
|
|
|
borderColor: '#f7796c',
|
|
|
|
borderWidth: 2,
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
|
|
|
data: data.map(x => ({ t: x.date, y: x.reply }))
|
|
|
|
}, {
|
2018-08-24 07:55:58 +02:00
|
|
|
label: 'Normal',
|
2018-08-24 01:56:57 +02:00
|
|
|
fill: true,
|
2018-08-24 07:55:58 +02:00
|
|
|
backgroundColor: 'rgba(65, 221, 222, 0.1)',
|
|
|
|
borderColor: '#41ddde',
|
2018-08-23 22:37:19 +02:00
|
|
|
borderWidth: 2,
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
2018-08-24 07:55:58 +02:00
|
|
|
data: data.map(x => ({ t: x.date, y: x.normal }))
|
2018-08-23 22:37:19 +02:00
|
|
|
}]
|
2018-08-24 07:55:58 +02:00
|
|
|
}, {
|
|
|
|
scales: {
|
|
|
|
yAxes: [{
|
|
|
|
ticks: {
|
|
|
|
callback: value => {
|
|
|
|
return Vue.filter('number')(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
tooltips: {
|
|
|
|
callbacks: {
|
|
|
|
label: (tooltipItem, data) => {
|
|
|
|
const label = data.datasets[tooltipItem.datasetIndex].label || '';
|
|
|
|
return `${label}: ${Vue.filter('number')(tooltipItem.yLabel)}`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-23 22:37:19 +02:00
|
|
|
}];
|
|
|
|
},
|
2018-08-23 23:41:53 +02:00
|
|
|
|
2018-08-24 07:55:58 +02:00
|
|
|
notesTotalChart(): any {
|
2018-10-21 03:24:56 +02:00
|
|
|
const data = [];
|
|
|
|
|
|
|
|
for (let i = 0; i < limit; i++) {
|
|
|
|
data.push({
|
|
|
|
date: this.getDate(i),
|
|
|
|
localCount: this.stats.notes.local.total[i],
|
|
|
|
remoteCount: this.stats.notes.remote.total[i]
|
|
|
|
});
|
|
|
|
}
|
2018-08-23 22:37:19 +02:00
|
|
|
|
|
|
|
return [{
|
|
|
|
datasets: [{
|
2018-08-25 01:35:41 +02:00
|
|
|
label: 'Combined',
|
2018-08-24 07:55:58 +02:00
|
|
|
fill: false,
|
|
|
|
borderColor: '#555',
|
|
|
|
borderWidth: 2,
|
|
|
|
borderDash: [4, 4],
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
|
|
|
data: data.map(x => ({ t: x.date, y: x.remoteCount + x.localCount }))
|
|
|
|
}, {
|
2018-08-25 08:25:16 +02:00
|
|
|
label: 'Local',
|
2018-08-24 07:55:58 +02:00
|
|
|
fill: true,
|
2018-08-25 08:25:16 +02:00
|
|
|
backgroundColor: rgba(colors.local),
|
|
|
|
borderColor: colors.local,
|
2018-08-24 07:55:58 +02:00
|
|
|
borderWidth: 2,
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
2018-08-25 08:25:16 +02:00
|
|
|
data: data.map(x => ({ t: x.date, y: x.localCount }))
|
2018-08-24 07:55:58 +02:00
|
|
|
}, {
|
2018-08-25 08:25:16 +02:00
|
|
|
label: 'Remote',
|
2018-08-24 00:17:17 +02:00
|
|
|
fill: true,
|
2018-08-25 08:25:16 +02:00
|
|
|
backgroundColor: rgba(colors.remote),
|
|
|
|
borderColor: colors.remote,
|
2018-08-23 22:37:19 +02:00
|
|
|
borderWidth: 2,
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
2018-08-25 08:25:16 +02:00
|
|
|
data: data.map(x => ({ t: x.date, y: x.remoteCount }))
|
2018-08-23 22:37:19 +02:00
|
|
|
}]
|
2018-08-24 07:55:58 +02:00
|
|
|
}, {
|
|
|
|
scales: {
|
|
|
|
yAxes: [{
|
|
|
|
ticks: {
|
|
|
|
callback: value => {
|
|
|
|
return Vue.filter('number')(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
tooltips: {
|
|
|
|
callbacks: {
|
|
|
|
label: (tooltipItem, data) => {
|
|
|
|
const label = data.datasets[tooltipItem.datasetIndex].label || '';
|
|
|
|
return `${label}: ${Vue.filter('number')(tooltipItem.yLabel)}`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-23 22:37:19 +02:00
|
|
|
}];
|
|
|
|
},
|
2018-08-23 23:41:53 +02:00
|
|
|
|
2018-08-24 07:55:58 +02:00
|
|
|
usersChart(total: boolean): any {
|
2018-10-21 03:24:56 +02:00
|
|
|
const data = [];
|
|
|
|
|
|
|
|
for (let i = 0; i < limit; i++) {
|
|
|
|
data.push({
|
|
|
|
date: this.getDate(i),
|
|
|
|
localCount: total ? this.stats.users.local.total[i] : (this.stats.users.local.inc[i] + -this.stats.users.local.dec[i]),
|
|
|
|
remoteCount: total ? this.stats.users.remote.total[i] : (this.stats.users.remote.inc[i] + -this.stats.users.remote.dec[i])
|
|
|
|
});
|
|
|
|
}
|
2018-08-23 22:37:19 +02:00
|
|
|
|
|
|
|
return [{
|
|
|
|
datasets: [{
|
2018-08-25 01:35:41 +02:00
|
|
|
label: 'Combined',
|
2018-08-24 07:55:58 +02:00
|
|
|
fill: false,
|
|
|
|
borderColor: '#555',
|
|
|
|
borderWidth: 2,
|
|
|
|
borderDash: [4, 4],
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
|
|
|
data: data.map(x => ({ t: x.date, y: x.remoteCount + x.localCount }))
|
|
|
|
}, {
|
2018-08-25 08:25:16 +02:00
|
|
|
label: 'Local',
|
2018-08-24 07:55:58 +02:00
|
|
|
fill: true,
|
2018-08-25 08:25:16 +02:00
|
|
|
backgroundColor: rgba(colors.local),
|
|
|
|
borderColor: colors.local,
|
2018-08-24 07:55:58 +02:00
|
|
|
borderWidth: 2,
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
2018-08-25 08:25:16 +02:00
|
|
|
data: data.map(x => ({ t: x.date, y: x.localCount }))
|
2018-08-24 07:55:58 +02:00
|
|
|
}, {
|
2018-08-25 08:25:16 +02:00
|
|
|
label: 'Remote',
|
2018-08-24 00:17:17 +02:00
|
|
|
fill: true,
|
2018-08-25 08:25:16 +02:00
|
|
|
backgroundColor: rgba(colors.remote),
|
|
|
|
borderColor: colors.remote,
|
2018-08-23 22:37:19 +02:00
|
|
|
borderWidth: 2,
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
2018-08-25 08:25:16 +02:00
|
|
|
data: data.map(x => ({ t: x.date, y: x.remoteCount }))
|
2018-08-23 22:37:19 +02:00
|
|
|
}]
|
2018-08-24 07:55:58 +02:00
|
|
|
}, {
|
|
|
|
scales: {
|
|
|
|
yAxes: [{
|
|
|
|
ticks: {
|
|
|
|
callback: value => {
|
|
|
|
return Vue.filter('number')(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
tooltips: {
|
|
|
|
callbacks: {
|
|
|
|
label: (tooltipItem, data) => {
|
|
|
|
const label = data.datasets[tooltipItem.datasetIndex].label || '';
|
|
|
|
return `${label}: ${Vue.filter('number')(tooltipItem.yLabel)}`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-23 22:37:19 +02:00
|
|
|
}];
|
|
|
|
},
|
2018-08-23 23:41:53 +02:00
|
|
|
|
2018-08-25 01:35:41 +02:00
|
|
|
driveChart(): any {
|
2018-10-21 03:24:56 +02:00
|
|
|
const data = [];
|
|
|
|
|
|
|
|
for (let i = 0; i < limit; i++) {
|
|
|
|
data.push({
|
|
|
|
date: this.getDate(i),
|
|
|
|
localInc: this.stats.drive.local.incSize[i],
|
|
|
|
localDec: -this.stats.drive.local.decSize[i],
|
|
|
|
remoteInc: this.stats.drive.remote.incSize[i],
|
|
|
|
remoteDec: -this.stats.drive.remote.decSize[i],
|
|
|
|
});
|
|
|
|
}
|
2018-08-23 22:37:19 +02:00
|
|
|
|
|
|
|
return [{
|
|
|
|
datasets: [{
|
2018-08-25 01:35:41 +02:00
|
|
|
label: 'All',
|
|
|
|
fill: false,
|
|
|
|
borderColor: '#555',
|
|
|
|
borderWidth: 2,
|
|
|
|
borderDash: [4, 4],
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
|
|
|
data: data.map(x => ({ t: x.date, y: x.localInc + x.localDec + x.remoteInc + x.remoteDec }))
|
|
|
|
}, {
|
2018-08-25 08:25:16 +02:00
|
|
|
label: 'Local +',
|
2018-08-25 01:35:41 +02:00
|
|
|
fill: true,
|
2018-08-25 08:25:16 +02:00
|
|
|
backgroundColor: rgba(colors.localPlus),
|
|
|
|
borderColor: colors.localPlus,
|
2018-08-25 01:35:41 +02:00
|
|
|
borderWidth: 2,
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
2018-08-25 08:25:16 +02:00
|
|
|
data: data.map(x => ({ t: x.date, y: x.localInc }))
|
2018-08-25 01:35:41 +02:00
|
|
|
}, {
|
2018-08-25 08:25:16 +02:00
|
|
|
label: 'Local -',
|
2018-08-25 01:35:41 +02:00
|
|
|
fill: true,
|
2018-08-25 08:25:16 +02:00
|
|
|
backgroundColor: rgba(colors.localMinus),
|
|
|
|
borderColor: colors.localMinus,
|
2018-08-25 01:35:41 +02:00
|
|
|
borderWidth: 2,
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
2018-08-25 08:25:16 +02:00
|
|
|
data: data.map(x => ({ t: x.date, y: x.localDec }))
|
2018-08-25 01:35:41 +02:00
|
|
|
}, {
|
2018-08-25 08:25:16 +02:00
|
|
|
label: 'Remote +',
|
2018-08-25 01:35:41 +02:00
|
|
|
fill: true,
|
2018-08-25 08:25:16 +02:00
|
|
|
backgroundColor: rgba(colors.remotePlus),
|
|
|
|
borderColor: colors.remotePlus,
|
2018-08-25 01:35:41 +02:00
|
|
|
borderWidth: 2,
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
2018-08-25 08:25:16 +02:00
|
|
|
data: data.map(x => ({ t: x.date, y: x.remoteInc }))
|
2018-08-25 01:35:41 +02:00
|
|
|
}, {
|
2018-08-25 08:25:16 +02:00
|
|
|
label: 'Remote -',
|
2018-08-25 01:35:41 +02:00
|
|
|
fill: true,
|
2018-08-25 08:25:16 +02:00
|
|
|
backgroundColor: rgba(colors.remoteMinus),
|
|
|
|
borderColor: colors.remoteMinus,
|
2018-08-25 01:35:41 +02:00
|
|
|
borderWidth: 2,
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
2018-08-25 08:25:16 +02:00
|
|
|
data: data.map(x => ({ t: x.date, y: x.remoteDec }))
|
2018-08-25 01:35:41 +02:00
|
|
|
}]
|
|
|
|
}, {
|
|
|
|
scales: {
|
|
|
|
yAxes: [{
|
|
|
|
ticks: {
|
|
|
|
callback: value => {
|
2018-08-25 05:14:36 +02:00
|
|
|
return Vue.filter('bytes')(value, 1);
|
2018-08-25 01:35:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
tooltips: {
|
|
|
|
callbacks: {
|
|
|
|
label: (tooltipItem, data) => {
|
|
|
|
const label = data.datasets[tooltipItem.datasetIndex].label || '';
|
2018-08-25 05:14:36 +02:00
|
|
|
return `${label}: ${Vue.filter('bytes')(tooltipItem.yLabel, 1)}`;
|
2018-08-25 01:35:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
},
|
|
|
|
|
|
|
|
driveTotalChart(): any {
|
2018-10-21 03:24:56 +02:00
|
|
|
const data = [];
|
|
|
|
|
|
|
|
for (let i = 0; i < limit; i++) {
|
|
|
|
data.push({
|
|
|
|
date: this.getDate(i),
|
|
|
|
localSize: this.stats.drive.local.totalSize[i],
|
|
|
|
remoteSize: this.stats.drive.remote.totalSize[i]
|
|
|
|
});
|
|
|
|
}
|
2018-08-25 01:35:41 +02:00
|
|
|
|
|
|
|
return [{
|
|
|
|
datasets: [{
|
|
|
|
label: 'Combined',
|
2018-08-24 07:55:58 +02:00
|
|
|
fill: false,
|
|
|
|
borderColor: '#555',
|
|
|
|
borderWidth: 2,
|
|
|
|
borderDash: [4, 4],
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
|
|
|
data: data.map(x => ({ t: x.date, y: x.remoteSize + x.localSize }))
|
|
|
|
}, {
|
2018-08-25 08:25:16 +02:00
|
|
|
label: 'Local',
|
2018-08-24 07:55:58 +02:00
|
|
|
fill: true,
|
2018-08-25 08:25:16 +02:00
|
|
|
backgroundColor: rgba(colors.local),
|
|
|
|
borderColor: colors.local,
|
2018-08-24 07:55:58 +02:00
|
|
|
borderWidth: 2,
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
2018-08-25 08:25:16 +02:00
|
|
|
data: data.map(x => ({ t: x.date, y: x.localSize }))
|
2018-08-24 07:55:58 +02:00
|
|
|
}, {
|
2018-08-25 08:25:16 +02:00
|
|
|
label: 'Remote',
|
2018-08-24 00:17:17 +02:00
|
|
|
fill: true,
|
2018-08-25 08:25:16 +02:00
|
|
|
backgroundColor: rgba(colors.remote),
|
|
|
|
borderColor: colors.remote,
|
2018-08-23 22:37:19 +02:00
|
|
|
borderWidth: 2,
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
2018-08-25 08:25:16 +02:00
|
|
|
data: data.map(x => ({ t: x.date, y: x.remoteSize }))
|
2018-08-23 22:37:19 +02:00
|
|
|
}]
|
|
|
|
}, {
|
|
|
|
scales: {
|
|
|
|
yAxes: [{
|
|
|
|
ticks: {
|
2018-08-24 01:56:57 +02:00
|
|
|
callback: value => {
|
2018-08-25 12:34:54 +02:00
|
|
|
return Vue.filter('bytes')(value, 1);
|
2018-08-23 22:37:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}]
|
2018-08-24 01:56:57 +02:00
|
|
|
},
|
|
|
|
tooltips: {
|
|
|
|
callbacks: {
|
2018-08-24 07:55:58 +02:00
|
|
|
label: (tooltipItem, data) => {
|
|
|
|
const label = data.datasets[tooltipItem.datasetIndex].label || '';
|
2018-08-25 12:34:54 +02:00
|
|
|
return `${label}: ${Vue.filter('bytes')(tooltipItem.yLabel, 1)}`;
|
2018-08-24 01:56:57 +02:00
|
|
|
}
|
|
|
|
}
|
2018-08-23 22:37:19 +02:00
|
|
|
}
|
|
|
|
}];
|
2018-08-23 23:41:53 +02:00
|
|
|
},
|
|
|
|
|
2018-08-25 01:35:41 +02:00
|
|
|
driveFilesChart(): any {
|
2018-10-21 03:24:56 +02:00
|
|
|
const data = [];
|
|
|
|
|
|
|
|
for (let i = 0; i < limit; i++) {
|
|
|
|
data.push({
|
|
|
|
date: this.getDate(i),
|
|
|
|
localInc: this.stats.drive.local.incCount[i],
|
|
|
|
localDec: -this.stats.drive.local.decCount[i],
|
|
|
|
remoteInc: this.stats.drive.remote.incCount[i],
|
|
|
|
remoteDec: -this.stats.drive.remote.decCount[i]
|
|
|
|
});
|
|
|
|
}
|
2018-08-23 23:41:53 +02:00
|
|
|
|
|
|
|
return [{
|
|
|
|
datasets: [{
|
2018-08-25 01:35:41 +02:00
|
|
|
label: 'All',
|
2018-08-24 07:55:58 +02:00
|
|
|
fill: false,
|
|
|
|
borderColor: '#555',
|
|
|
|
borderWidth: 2,
|
|
|
|
borderDash: [4, 4],
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
2018-08-25 01:35:41 +02:00
|
|
|
data: data.map(x => ({ t: x.date, y: x.localInc + x.localDec + x.remoteInc + x.remoteDec }))
|
|
|
|
}, {
|
2018-08-25 08:25:16 +02:00
|
|
|
label: 'Local +',
|
2018-08-25 01:35:41 +02:00
|
|
|
fill: true,
|
2018-08-25 08:25:16 +02:00
|
|
|
backgroundColor: rgba(colors.localPlus),
|
|
|
|
borderColor: colors.localPlus,
|
2018-08-25 01:35:41 +02:00
|
|
|
borderWidth: 2,
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
2018-08-25 08:25:16 +02:00
|
|
|
data: data.map(x => ({ t: x.date, y: x.localInc }))
|
2018-08-25 01:35:41 +02:00
|
|
|
}, {
|
2018-08-25 08:25:16 +02:00
|
|
|
label: 'Local -',
|
2018-08-25 01:35:41 +02:00
|
|
|
fill: true,
|
2018-08-25 08:25:16 +02:00
|
|
|
backgroundColor: rgba(colors.localMinus),
|
|
|
|
borderColor: colors.localMinus,
|
2018-08-25 01:35:41 +02:00
|
|
|
borderWidth: 2,
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
2018-08-25 08:25:16 +02:00
|
|
|
data: data.map(x => ({ t: x.date, y: x.localDec }))
|
2018-08-25 01:35:41 +02:00
|
|
|
}, {
|
2018-08-25 08:25:16 +02:00
|
|
|
label: 'Remote +',
|
2018-08-25 01:35:41 +02:00
|
|
|
fill: true,
|
2018-08-25 08:25:16 +02:00
|
|
|
backgroundColor: rgba(colors.remotePlus),
|
|
|
|
borderColor: colors.remotePlus,
|
2018-08-25 01:35:41 +02:00
|
|
|
borderWidth: 2,
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
2018-08-25 08:25:16 +02:00
|
|
|
data: data.map(x => ({ t: x.date, y: x.remoteInc }))
|
2018-08-25 01:35:41 +02:00
|
|
|
}, {
|
2018-08-25 08:25:16 +02:00
|
|
|
label: 'Remote -',
|
2018-08-25 01:35:41 +02:00
|
|
|
fill: true,
|
2018-08-25 08:25:16 +02:00
|
|
|
backgroundColor: rgba(colors.remoteMinus),
|
|
|
|
borderColor: colors.remoteMinus,
|
2018-08-25 01:35:41 +02:00
|
|
|
borderWidth: 2,
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
2018-08-25 08:25:16 +02:00
|
|
|
data: data.map(x => ({ t: x.date, y: x.remoteDec }))
|
2018-08-25 01:35:41 +02:00
|
|
|
}]
|
|
|
|
}, {
|
|
|
|
scales: {
|
|
|
|
yAxes: [{
|
|
|
|
ticks: {
|
|
|
|
callback: value => {
|
|
|
|
return Vue.filter('number')(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
tooltips: {
|
|
|
|
callbacks: {
|
|
|
|
label: (tooltipItem, data) => {
|
|
|
|
const label = data.datasets[tooltipItem.datasetIndex].label || '';
|
|
|
|
return `${label}: ${Vue.filter('number')(tooltipItem.yLabel)}`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
},
|
|
|
|
|
|
|
|
driveFilesTotalChart(): any {
|
2018-10-21 03:24:56 +02:00
|
|
|
const data = [];
|
|
|
|
|
|
|
|
for (let i = 0; i < limit; i++) {
|
|
|
|
data.push({
|
|
|
|
date: this.getDate(i),
|
|
|
|
localCount: this.stats.drive.local.totalCount[i],
|
|
|
|
remoteCount: this.stats.drive.remote.totalCount[i],
|
|
|
|
});
|
|
|
|
}
|
2018-08-25 01:35:41 +02:00
|
|
|
|
|
|
|
return [{
|
|
|
|
datasets: [{
|
|
|
|
label: 'Combined',
|
|
|
|
fill: false,
|
|
|
|
borderColor: '#555',
|
|
|
|
borderWidth: 2,
|
|
|
|
borderDash: [4, 4],
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
|
|
|
data: data.map(x => ({ t: x.date, y: x.localCount + x.remoteCount }))
|
2018-08-24 07:55:58 +02:00
|
|
|
}, {
|
2018-08-25 08:25:16 +02:00
|
|
|
label: 'Local',
|
2018-08-24 07:55:58 +02:00
|
|
|
fill: true,
|
2018-08-25 08:25:16 +02:00
|
|
|
backgroundColor: rgba(colors.local),
|
|
|
|
borderColor: colors.local,
|
2018-08-24 07:55:58 +02:00
|
|
|
borderWidth: 2,
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
2018-08-25 08:25:16 +02:00
|
|
|
data: data.map(x => ({ t: x.date, y: x.localCount }))
|
2018-08-24 07:55:58 +02:00
|
|
|
}, {
|
2018-08-25 08:25:16 +02:00
|
|
|
label: 'Remote',
|
2018-08-24 02:39:16 +02:00
|
|
|
fill: true,
|
2018-08-25 08:25:16 +02:00
|
|
|
backgroundColor: rgba(colors.remote),
|
|
|
|
borderColor: colors.remote,
|
2018-08-23 23:41:53 +02:00
|
|
|
borderWidth: 2,
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
2018-08-25 08:25:16 +02:00
|
|
|
data: data.map(x => ({ t: x.date, y: x.remoteCount }))
|
2018-08-23 23:41:53 +02:00
|
|
|
}]
|
2018-08-24 07:55:58 +02:00
|
|
|
}, {
|
|
|
|
scales: {
|
|
|
|
yAxes: [{
|
|
|
|
ticks: {
|
|
|
|
callback: value => {
|
|
|
|
return Vue.filter('number')(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
tooltips: {
|
|
|
|
callbacks: {
|
|
|
|
label: (tooltipItem, data) => {
|
|
|
|
const label = data.datasets[tooltipItem.datasetIndex].label || '';
|
|
|
|
return `${label}: ${Vue.filter('number')(tooltipItem.yLabel)}`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-23 23:41:53 +02:00
|
|
|
}];
|
2018-09-14 22:40:58 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
networkRequestsChart(): any {
|
2018-10-21 03:24:56 +02:00
|
|
|
const data = [];
|
|
|
|
|
|
|
|
for (let i = 0; i < limit; i++) {
|
|
|
|
data.push({
|
|
|
|
date: this.getDate(i),
|
|
|
|
incoming: this.stats.network.incomingRequests[i]
|
|
|
|
});
|
|
|
|
}
|
2018-09-14 22:40:58 +02:00
|
|
|
|
|
|
|
return [{
|
|
|
|
datasets: [{
|
2018-10-21 00:10:35 +02:00
|
|
|
label: 'Incoming',
|
2018-09-14 22:40:58 +02:00
|
|
|
fill: true,
|
|
|
|
backgroundColor: rgba(colors.localPlus),
|
|
|
|
borderColor: colors.localPlus,
|
|
|
|
borderWidth: 2,
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
2018-10-21 02:20:11 +02:00
|
|
|
data: data.map(x => ({ t: x.date, y: x.incoming }))
|
2018-09-14 22:40:58 +02:00
|
|
|
}]
|
|
|
|
}];
|
|
|
|
},
|
|
|
|
|
|
|
|
networkTimeChart(): any {
|
2018-10-21 03:24:56 +02:00
|
|
|
const data = [];
|
|
|
|
|
|
|
|
for (let i = 0; i < limit; i++) {
|
|
|
|
data.push({
|
|
|
|
date: this.getDate(i),
|
|
|
|
time: this.stats.network.incomingRequests[i] != 0 ? (this.stats.network.totalTime[i] / this.stats.network.incomingRequests[i]) : 0,
|
|
|
|
});
|
|
|
|
}
|
2018-09-14 22:40:58 +02:00
|
|
|
|
|
|
|
return [{
|
|
|
|
datasets: [{
|
|
|
|
label: 'Avg time (ms)',
|
|
|
|
fill: true,
|
|
|
|
backgroundColor: rgba(colors.localPlus),
|
|
|
|
borderColor: colors.localPlus,
|
|
|
|
borderWidth: 2,
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
|
|
|
data: data.map(x => ({ t: x.date, y: x.time }))
|
|
|
|
}]
|
|
|
|
}];
|
|
|
|
},
|
|
|
|
|
|
|
|
networkUsageChart(): any {
|
2018-10-21 03:24:56 +02:00
|
|
|
const data = [];
|
|
|
|
|
|
|
|
for (let i = 0; i < limit; i++) {
|
|
|
|
data.push({
|
|
|
|
date: this.getDate(i),
|
|
|
|
incoming: this.stats.network.incomingBytes[i],
|
|
|
|
outgoing: this.stats.network.outgoingBytes[i]
|
|
|
|
});
|
|
|
|
}
|
2018-09-14 22:40:58 +02:00
|
|
|
|
|
|
|
return [{
|
|
|
|
datasets: [{
|
|
|
|
label: 'Incoming',
|
|
|
|
fill: true,
|
|
|
|
backgroundColor: rgba(colors.incoming),
|
|
|
|
borderColor: colors.incoming,
|
|
|
|
borderWidth: 2,
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
|
|
|
data: data.map(x => ({ t: x.date, y: x.incoming }))
|
|
|
|
}, {
|
|
|
|
label: 'Outgoing',
|
|
|
|
fill: true,
|
|
|
|
backgroundColor: rgba(colors.outgoing),
|
|
|
|
borderColor: colors.outgoing,
|
|
|
|
borderWidth: 2,
|
|
|
|
pointBackgroundColor: '#fff',
|
|
|
|
lineTension: 0,
|
|
|
|
data: data.map(x => ({ t: x.date, y: x.outgoing }))
|
|
|
|
}]
|
|
|
|
}, {
|
|
|
|
scales: {
|
|
|
|
yAxes: [{
|
|
|
|
ticks: {
|
|
|
|
callback: value => {
|
|
|
|
return Vue.filter('bytes')(value, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
tooltips: {
|
|
|
|
callbacks: {
|
|
|
|
label: (tooltipItem, data) => {
|
|
|
|
const label = data.datasets[tooltipItem.datasetIndex].label || '';
|
|
|
|
return `${label}: ${Vue.filter('bytes')(tooltipItem.yLabel, 1)}`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
},
|
2018-08-23 22:37:19 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.gkgckalzgidaygcxnugepioremxvxvpt
|
2018-08-25 05:28:05 +02:00
|
|
|
padding 32px
|
|
|
|
background #fff
|
|
|
|
box-shadow 0 2px 8px rgba(#000, 0.1)
|
|
|
|
|
2018-08-24 01:56:57 +02:00
|
|
|
*
|
|
|
|
user-select none
|
|
|
|
|
2018-08-23 22:37:19 +02:00
|
|
|
> header
|
|
|
|
display flex
|
2018-08-25 05:28:05 +02:00
|
|
|
margin 0 0 1em 0
|
|
|
|
padding 0 0 8px 0
|
|
|
|
font-size 1em
|
|
|
|
color #555
|
|
|
|
border-bottom solid 1px #eee
|
2018-08-23 22:37:19 +02:00
|
|
|
|
|
|
|
> b
|
|
|
|
margin-right 8px
|
|
|
|
|
|
|
|
> *:last-child
|
|
|
|
margin-left auto
|
|
|
|
|
2018-08-24 07:55:58 +02:00
|
|
|
*
|
|
|
|
&:not(.active)
|
2018-09-26 13:19:35 +02:00
|
|
|
color var(--primary)
|
2018-08-24 07:55:58 +02:00
|
|
|
cursor pointer
|
|
|
|
|
2018-08-24 00:17:17 +02:00
|
|
|
> div
|
|
|
|
> *
|
|
|
|
display block
|
2018-09-16 19:56:57 +02:00
|
|
|
height 350px
|
2018-08-24 00:17:17 +02:00
|
|
|
|
2018-08-23 22:37:19 +02:00
|
|
|
</style>
|