2018-11-02 19:00:23 +01:00
|
|
|
<template>
|
2020-01-29 20:37:25 +01:00
|
|
|
<div class="mk-instance-stats">
|
2020-01-30 03:10:42 +01:00
|
|
|
<section class="_card">
|
2020-01-29 20:37:25 +01:00
|
|
|
<div class="_title"><fa :icon="faChartBar"/> {{ $t('statistics') }}</div>
|
|
|
|
<div class="_content" style="margin-top: -8px; margin-bottom: -12px;">
|
|
|
|
<div class="selects" style="display: flex;">
|
|
|
|
<mk-select v-model="chartSrc" style="margin: 0; flex: 1;">
|
|
|
|
<optgroup :label="$t('federation')">
|
|
|
|
<option value="federation-instances">{{ $t('_charts.federationInstancesIncDec') }}</option>
|
|
|
|
<option value="federation-instances-total">{{ $t('_charts.federationInstancesTotal') }}</option>
|
|
|
|
</optgroup>
|
|
|
|
<optgroup :label="$t('users')">
|
|
|
|
<option value="users">{{ $t('_charts.usersIncDec') }}</option>
|
|
|
|
<option value="users-total">{{ $t('_charts.usersTotal') }}</option>
|
|
|
|
<option value="active-users">{{ $t('_charts.activeUsers') }}</option>
|
|
|
|
</optgroup>
|
|
|
|
<optgroup :label="$t('notes')">
|
|
|
|
<option value="notes">{{ $t('_charts.notesIncDec') }}</option>
|
|
|
|
<option value="local-notes">{{ $t('_charts.localNotesIncDec') }}</option>
|
|
|
|
<option value="remote-notes">{{ $t('_charts.remoteNotesIncDec') }}</option>
|
|
|
|
<option value="notes-total">{{ $t('_charts.notesTotal') }}</option>
|
|
|
|
</optgroup>
|
|
|
|
<optgroup :label="$t('drive')">
|
|
|
|
<option value="drive-files">{{ $t('_charts.filesIncDec') }}</option>
|
|
|
|
<option value="drive-files-total">{{ $t('_charts.filesTotal') }}</option>
|
|
|
|
<option value="drive">{{ $t('_charts.storageUsageIncDec') }}</option>
|
|
|
|
<option value="drive-total">{{ $t('_charts.storageUsageTotal') }}</option>
|
|
|
|
</optgroup>
|
|
|
|
</mk-select>
|
|
|
|
<mk-select v-model="chartSpan" style="margin: 0;">
|
|
|
|
<option value="hour">{{ $t('perHour') }}</option>
|
|
|
|
<option value="day">{{ $t('perDay') }}</option>
|
|
|
|
</mk-select>
|
|
|
|
</div>
|
|
|
|
<canvas ref="chart"></canvas>
|
2018-11-02 19:00:23 +01:00
|
|
|
</div>
|
2020-01-29 20:37:25 +01:00
|
|
|
</section>
|
2018-11-02 19:00:23 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2020-01-29 20:37:25 +01:00
|
|
|
import { faChartBar } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import Chart from 'chart.js';
|
2018-11-08 19:44:35 +01:00
|
|
|
import i18n from '../../i18n';
|
2020-01-29 20:37:25 +01:00
|
|
|
import MkSelect from '../../components/ui/select.vue';
|
2018-11-02 19:00:23 +01:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
const chartLimit = 90;
|
2018-11-02 19:00:23 +01:00
|
|
|
const sum = (...arr) => arr.reduce((r, a) => r.map((b, i) => a[i] + b));
|
|
|
|
const negate = arr => arr.map(x => -x);
|
2020-01-29 20:37:25 +01:00
|
|
|
const alpha = (hex, a) => {
|
|
|
|
const result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex)!;
|
|
|
|
const r = parseInt(result[1], 16);
|
|
|
|
const g = parseInt(result[2], 16);
|
|
|
|
const b = parseInt(result[3], 16);
|
|
|
|
return `rgba(${r}, ${g}, ${b}, ${a})`;
|
|
|
|
};
|
2018-11-02 19:00:23 +01:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2020-01-29 20:37:25 +01:00
|
|
|
i18n,
|
|
|
|
|
|
|
|
metaInfo() {
|
|
|
|
return {
|
|
|
|
title: `${this.$t('statistics')} | ${this.$t('instance')}`
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
components: {
|
|
|
|
MkSelect
|
|
|
|
},
|
|
|
|
|
2018-11-02 19:00:23 +01:00
|
|
|
data() {
|
|
|
|
return {
|
2020-01-29 20:37:25 +01:00
|
|
|
now: null,
|
2018-11-02 19:00:23 +01:00
|
|
|
chart: null,
|
2020-01-29 20:37:25 +01:00
|
|
|
chartInstance: null,
|
|
|
|
chartSrc: 'notes',
|
|
|
|
chartSpan: 'hour',
|
|
|
|
faChartBar
|
|
|
|
}
|
2018-11-02 19:00:23 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
data(): any {
|
|
|
|
if (this.chart == null) return null;
|
2020-01-29 20:37:25 +01:00
|
|
|
switch (this.chartSrc) {
|
2018-11-02 19:00:23 +01:00
|
|
|
case 'federation-instances': return this.federationInstancesChart(false);
|
|
|
|
case 'federation-instances-total': return this.federationInstancesChart(true);
|
|
|
|
case 'users': return this.usersChart(false);
|
|
|
|
case 'users-total': return this.usersChart(true);
|
2019-01-17 09:16:08 +01:00
|
|
|
case 'active-users': return this.activeUsersChart();
|
2018-11-02 19:00:23 +01:00
|
|
|
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();
|
|
|
|
case 'drive': return this.driveChart();
|
|
|
|
case 'drive-total': return this.driveTotalChart();
|
|
|
|
case 'drive-files': return this.driveFilesChart();
|
|
|
|
case 'drive-files-total': return this.driveFilesTotalChart();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
stats(): any[] {
|
|
|
|
const stats =
|
2020-01-29 20:37:25 +01:00
|
|
|
this.chartSpan == 'day' ? this.chart.perDay :
|
|
|
|
this.chartSpan == 'hour' ? this.chart.perHour :
|
2018-11-02 19:00:23 +01:00
|
|
|
null;
|
|
|
|
|
|
|
|
return stats;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
watch: {
|
2020-01-29 20:37:25 +01:00
|
|
|
chartSrc() {
|
|
|
|
this.renderChart();
|
2018-11-02 19:00:23 +01:00
|
|
|
},
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
chartSpan() {
|
|
|
|
this.renderChart();
|
2018-11-02 19:00:23 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
async created() {
|
2018-11-02 19:00:23 +01:00
|
|
|
this.now = new Date();
|
|
|
|
|
|
|
|
const [perHour, perDay] = await Promise.all([Promise.all([
|
2020-01-29 20:37:25 +01:00
|
|
|
this.$root.api('charts/federation', { limit: chartLimit, span: 'hour' }),
|
|
|
|
this.$root.api('charts/users', { limit: chartLimit, span: 'hour' }),
|
|
|
|
this.$root.api('charts/active-users', { limit: chartLimit, span: 'hour' }),
|
|
|
|
this.$root.api('charts/notes', { limit: chartLimit, span: 'hour' }),
|
|
|
|
this.$root.api('charts/drive', { limit: chartLimit, span: 'hour' }),
|
2018-11-02 19:00:23 +01:00
|
|
|
]), Promise.all([
|
2020-01-29 20:37:25 +01:00
|
|
|
this.$root.api('charts/federation', { limit: chartLimit, span: 'day' }),
|
|
|
|
this.$root.api('charts/users', { limit: chartLimit, span: 'day' }),
|
|
|
|
this.$root.api('charts/active-users', { limit: chartLimit, span: 'day' }),
|
|
|
|
this.$root.api('charts/notes', { limit: chartLimit, span: 'day' }),
|
|
|
|
this.$root.api('charts/drive', { limit: chartLimit, span: 'day' }),
|
2018-11-02 19:00:23 +01:00
|
|
|
])]);
|
|
|
|
|
|
|
|
const chart = {
|
|
|
|
perHour: {
|
|
|
|
federation: perHour[0],
|
|
|
|
users: perHour[1],
|
2019-01-17 09:16:08 +01:00
|
|
|
activeUsers: perHour[2],
|
|
|
|
notes: perHour[3],
|
|
|
|
drive: perHour[4],
|
2018-11-02 19:00:23 +01:00
|
|
|
},
|
|
|
|
perDay: {
|
|
|
|
federation: perDay[0],
|
|
|
|
users: perDay[1],
|
2019-01-17 09:16:08 +01:00
|
|
|
activeUsers: perDay[2],
|
|
|
|
notes: perDay[3],
|
|
|
|
drive: perDay[4],
|
2018-11-02 19:00:23 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
this.chart = chart;
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
this.renderChart();
|
2018-11-09 10:38:10 +01:00
|
|
|
},
|
|
|
|
|
2018-11-02 19:00:23 +01:00
|
|
|
methods: {
|
2020-01-29 20:37:25 +01:00
|
|
|
renderChart() {
|
2018-11-02 19:00:23 +01:00
|
|
|
if (this.chartInstance) {
|
|
|
|
this.chartInstance.destroy();
|
|
|
|
}
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
Chart.defaults.global.defaultFontColor = getComputedStyle(document.documentElement).getPropertyValue('--fg');
|
|
|
|
this.chartInstance = new Chart(this.$refs.chart, {
|
|
|
|
type: 'line',
|
|
|
|
data: {
|
|
|
|
labels: new Array(chartLimit).fill(0).map((_, i) => this.getDate(i).toLocaleString()).slice().reverse(),
|
|
|
|
datasets: this.data.series.map(x => ({
|
|
|
|
label: x.name,
|
|
|
|
data: x.data.slice().reverse(),
|
|
|
|
pointRadius: 0,
|
|
|
|
lineTension: 0,
|
|
|
|
borderWidth: 2,
|
|
|
|
borderColor: x.color,
|
|
|
|
backgroundColor: alpha(x.color, 0.1),
|
|
|
|
hidden: !!x.hidden
|
|
|
|
}))
|
2018-11-02 19:00:23 +01:00
|
|
|
},
|
2020-01-29 20:37:25 +01:00
|
|
|
options: {
|
|
|
|
aspectRatio: 2.5,
|
|
|
|
layout: {
|
|
|
|
padding: {
|
|
|
|
left: 0,
|
|
|
|
right: 0,
|
|
|
|
top: 16,
|
|
|
|
bottom: 0
|
2019-03-14 17:43:11 +01:00
|
|
|
}
|
|
|
|
},
|
2020-01-29 20:37:25 +01:00
|
|
|
legend: {
|
|
|
|
position: 'bottom',
|
|
|
|
labels: {
|
|
|
|
boxWidth: 16,
|
2018-11-04 03:08:03 +01:00
|
|
|
}
|
|
|
|
},
|
2020-01-29 20:37:25 +01:00
|
|
|
scales: {
|
|
|
|
xAxes: [{
|
|
|
|
gridLines: {
|
|
|
|
display: false
|
|
|
|
},
|
|
|
|
ticks: {
|
|
|
|
display: false
|
|
|
|
}
|
|
|
|
}],
|
|
|
|
yAxes: [{
|
|
|
|
position: 'right',
|
|
|
|
ticks: {
|
|
|
|
display: false
|
|
|
|
}
|
|
|
|
}]
|
2018-11-04 03:08:03 +01:00
|
|
|
},
|
2020-01-29 20:37:25 +01:00
|
|
|
tooltips: {
|
|
|
|
intersect: false,
|
|
|
|
mode: 'index',
|
2018-11-04 03:08:03 +01:00
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2018-11-04 03:08:03 +01:00
|
|
|
});
|
2018-11-02 19:00:23 +01:00
|
|
|
},
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
getDate(ago: number) {
|
2018-11-02 19:00:23 +01:00
|
|
|
const y = this.now.getFullYear();
|
|
|
|
const m = this.now.getMonth();
|
|
|
|
const d = this.now.getDate();
|
|
|
|
const h = this.now.getHours();
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
return this.chartSpan == 'day' ? new Date(y, m, d - ago) : new Date(y, m, d, h - ago);
|
2018-11-02 19:00:23 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
format(arr) {
|
2020-01-29 20:37:25 +01:00
|
|
|
return arr;
|
2018-11-02 19:00:23 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
federationInstancesChart(total: boolean): any {
|
|
|
|
return {
|
|
|
|
series: [{
|
2019-03-22 06:57:09 +01:00
|
|
|
name: 'Instances',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(total
|
|
|
|
? this.stats.federation.instance.total
|
|
|
|
: sum(this.stats.federation.instance.inc, negate(this.stats.federation.instance.dec))
|
|
|
|
)
|
|
|
|
}]
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
notesChart(type: string): any {
|
|
|
|
return {
|
|
|
|
series: [{
|
|
|
|
name: 'All',
|
2018-11-03 05:08:49 +01:00
|
|
|
type: 'line',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(type == 'combined'
|
|
|
|
? sum(this.stats.notes.local.inc, negate(this.stats.notes.local.dec), this.stats.notes.remote.inc, negate(this.stats.notes.remote.dec))
|
|
|
|
: sum(this.stats.notes[type].inc, negate(this.stats.notes[type].dec))
|
|
|
|
)
|
|
|
|
}, {
|
|
|
|
name: 'Renotes',
|
2018-11-03 05:08:49 +01:00
|
|
|
type: 'area',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#00E396',
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(type == 'combined'
|
|
|
|
? sum(this.stats.notes.local.diffs.renote, this.stats.notes.remote.diffs.renote)
|
|
|
|
: this.stats.notes[type].diffs.renote
|
|
|
|
)
|
|
|
|
}, {
|
|
|
|
name: 'Replies',
|
2018-11-03 05:08:49 +01:00
|
|
|
type: 'area',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#FEB019',
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(type == 'combined'
|
|
|
|
? sum(this.stats.notes.local.diffs.reply, this.stats.notes.remote.diffs.reply)
|
|
|
|
: this.stats.notes[type].diffs.reply
|
|
|
|
)
|
|
|
|
}, {
|
|
|
|
name: 'Normal',
|
2018-11-03 05:08:49 +01:00
|
|
|
type: 'area',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#FF4560',
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(type == 'combined'
|
|
|
|
? sum(this.stats.notes.local.diffs.normal, this.stats.notes.remote.diffs.normal)
|
|
|
|
: this.stats.notes[type].diffs.normal
|
|
|
|
)
|
|
|
|
}]
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
notesTotalChart(): any {
|
|
|
|
return {
|
|
|
|
series: [{
|
|
|
|
name: 'Combined',
|
2018-11-06 00:04:34 +01:00
|
|
|
type: 'line',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(sum(this.stats.notes.local.total, this.stats.notes.remote.total))
|
|
|
|
}, {
|
|
|
|
name: 'Local',
|
2018-11-06 00:04:34 +01:00
|
|
|
type: 'area',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
|
|
|
hidden: true,
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(this.stats.notes.local.total)
|
|
|
|
}, {
|
|
|
|
name: 'Remote',
|
2018-11-06 00:04:34 +01:00
|
|
|
type: 'area',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
|
|
|
hidden: true,
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(this.stats.notes.remote.total)
|
|
|
|
}]
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
usersChart(total: boolean): any {
|
|
|
|
return {
|
|
|
|
series: [{
|
|
|
|
name: 'Combined',
|
2018-11-06 00:04:34 +01:00
|
|
|
type: 'line',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(total
|
|
|
|
? sum(this.stats.users.local.total, this.stats.users.remote.total)
|
|
|
|
: sum(this.stats.users.local.inc, negate(this.stats.users.local.dec), this.stats.users.remote.inc, negate(this.stats.users.remote.dec))
|
|
|
|
)
|
|
|
|
}, {
|
|
|
|
name: 'Local',
|
2018-11-06 00:04:34 +01:00
|
|
|
type: 'area',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
|
|
|
hidden: true,
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(total
|
|
|
|
? this.stats.users.local.total
|
|
|
|
: sum(this.stats.users.local.inc, negate(this.stats.users.local.dec))
|
|
|
|
)
|
|
|
|
}, {
|
|
|
|
name: 'Remote',
|
2018-11-06 00:04:34 +01:00
|
|
|
type: 'area',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
|
|
|
hidden: true,
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(total
|
|
|
|
? this.stats.users.remote.total
|
|
|
|
: sum(this.stats.users.remote.inc, negate(this.stats.users.remote.dec))
|
|
|
|
)
|
|
|
|
}]
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2019-01-17 09:16:08 +01:00
|
|
|
activeUsersChart(): any {
|
|
|
|
return {
|
|
|
|
series: [{
|
|
|
|
name: 'Combined',
|
|
|
|
type: 'line',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
2019-01-17 09:16:08 +01:00
|
|
|
data: this.format(sum(this.stats.activeUsers.local.count, this.stats.activeUsers.remote.count))
|
|
|
|
}, {
|
|
|
|
name: 'Local',
|
|
|
|
type: 'area',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
|
|
|
hidden: true,
|
2019-01-17 09:16:08 +01:00
|
|
|
data: this.format(this.stats.activeUsers.local.count)
|
|
|
|
}, {
|
|
|
|
name: 'Remote',
|
|
|
|
type: 'area',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
|
|
|
hidden: true,
|
2019-01-17 09:16:08 +01:00
|
|
|
data: this.format(this.stats.activeUsers.remote.count)
|
|
|
|
}]
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2018-11-02 19:00:23 +01:00
|
|
|
driveChart(): any {
|
|
|
|
return {
|
2018-11-04 03:08:03 +01:00
|
|
|
bytes: true,
|
2018-11-02 19:00:23 +01:00
|
|
|
series: [{
|
|
|
|
name: 'All',
|
2018-11-06 00:04:34 +01:00
|
|
|
type: 'line',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(
|
|
|
|
sum(
|
|
|
|
this.stats.drive.local.incSize,
|
|
|
|
negate(this.stats.drive.local.decSize),
|
|
|
|
this.stats.drive.remote.incSize,
|
|
|
|
negate(this.stats.drive.remote.decSize)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
}, {
|
|
|
|
name: 'Local +',
|
2018-11-06 00:04:34 +01:00
|
|
|
type: 'area',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(this.stats.drive.local.incSize)
|
|
|
|
}, {
|
|
|
|
name: 'Local -',
|
2018-11-06 00:04:34 +01:00
|
|
|
type: 'area',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(negate(this.stats.drive.local.decSize))
|
|
|
|
}, {
|
|
|
|
name: 'Remote +',
|
2018-11-06 00:04:34 +01:00
|
|
|
type: 'area',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(this.stats.drive.remote.incSize)
|
|
|
|
}, {
|
|
|
|
name: 'Remote -',
|
2018-11-06 00:04:34 +01:00
|
|
|
type: 'area',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(negate(this.stats.drive.remote.decSize))
|
|
|
|
}]
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
driveTotalChart(): any {
|
|
|
|
return {
|
2018-11-04 03:08:03 +01:00
|
|
|
bytes: true,
|
2018-11-02 19:00:23 +01:00
|
|
|
series: [{
|
|
|
|
name: 'Combined',
|
2018-11-06 00:04:34 +01:00
|
|
|
type: 'line',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(sum(this.stats.drive.local.totalSize, this.stats.drive.remote.totalSize))
|
|
|
|
}, {
|
|
|
|
name: 'Local',
|
2018-11-06 00:04:34 +01:00
|
|
|
type: 'area',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
|
|
|
hidden: true,
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(this.stats.drive.local.totalSize)
|
|
|
|
}, {
|
|
|
|
name: 'Remote',
|
2018-11-06 00:04:34 +01:00
|
|
|
type: 'area',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
|
|
|
hidden: true,
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(this.stats.drive.remote.totalSize)
|
|
|
|
}]
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
driveFilesChart(): any {
|
|
|
|
return {
|
|
|
|
series: [{
|
|
|
|
name: 'All',
|
2018-11-06 00:04:34 +01:00
|
|
|
type: 'line',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(
|
|
|
|
sum(
|
|
|
|
this.stats.drive.local.incCount,
|
|
|
|
negate(this.stats.drive.local.decCount),
|
|
|
|
this.stats.drive.remote.incCount,
|
|
|
|
negate(this.stats.drive.remote.decCount)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
}, {
|
|
|
|
name: 'Local +',
|
2018-11-06 00:04:34 +01:00
|
|
|
type: 'area',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(this.stats.drive.local.incCount)
|
|
|
|
}, {
|
|
|
|
name: 'Local -',
|
2018-11-06 00:04:34 +01:00
|
|
|
type: 'area',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(negate(this.stats.drive.local.decCount))
|
|
|
|
}, {
|
|
|
|
name: 'Remote +',
|
2018-11-06 00:04:34 +01:00
|
|
|
type: 'area',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(this.stats.drive.remote.incCount)
|
|
|
|
}, {
|
|
|
|
name: 'Remote -',
|
2018-11-06 00:04:34 +01:00
|
|
|
type: 'area',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(negate(this.stats.drive.remote.decCount))
|
|
|
|
}]
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
driveFilesTotalChart(): any {
|
|
|
|
return {
|
|
|
|
series: [{
|
|
|
|
name: 'Combined',
|
2018-11-06 00:04:34 +01:00
|
|
|
type: 'line',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(sum(this.stats.drive.local.totalCount, this.stats.drive.remote.totalCount))
|
|
|
|
}, {
|
|
|
|
name: 'Local',
|
2018-11-06 00:04:34 +01:00
|
|
|
type: 'area',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
|
|
|
hidden: true,
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(this.stats.drive.local.totalCount)
|
|
|
|
}, {
|
|
|
|
name: 'Remote',
|
2018-11-06 00:04:34 +01:00
|
|
|
type: 'area',
|
2020-01-29 20:37:25 +01:00
|
|
|
color: '#008FFB',
|
|
|
|
hidden: true,
|
2018-11-02 19:00:23 +01:00
|
|
|
data: this.format(this.stats.drive.remote.totalCount)
|
|
|
|
}]
|
|
|
|
};
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|