2021-04-22 08:29:33 -05:00
|
|
|
<template>
|
2021-10-23 14:03:07 -05:00
|
|
|
<div class="edbbcaef" v-size="{ max: [740] }">
|
|
|
|
<div v-if="stats" class="cfcdecdf" style="margin: var(--margin)">
|
|
|
|
<div class="number _panel">
|
|
|
|
<div class="label">Users</div>
|
|
|
|
<div class="value _monospace">
|
|
|
|
{{ number(stats.originalUsersCount) }}
|
|
|
|
<MkNumberDiff v-if="usersComparedToThePrevDay != null" class="diff" :value="usersComparedToThePrevDay" v-tooltip="$ts.dayOverDayChanges"><template #before>(</template><template #after>)</template></MkNumberDiff>
|
2021-04-22 08:29:33 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-10-23 14:03:07 -05:00
|
|
|
<div class="number _panel">
|
|
|
|
<div class="label">Notes</div>
|
|
|
|
<div class="value _monospace">
|
|
|
|
{{ number(stats.originalNotesCount) }}
|
|
|
|
<MkNumberDiff v-if="notesComparedToThePrevDay != null" class="diff" :value="notesComparedToThePrevDay" v-tooltip="$ts.dayOverDayChanges"><template #before>(</template><template #after>)</template></MkNumberDiff>
|
2021-10-21 15:36:48 -05:00
|
|
|
</div>
|
2021-10-23 14:03:07 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-10-22 10:04:19 -05:00
|
|
|
|
2021-10-23 14:03:07 -05:00
|
|
|
<MkContainer :foldable="true" class="charts">
|
|
|
|
<template #header><i class="fas fa-chart-bar"></i>{{ $ts.charts }}</template>
|
|
|
|
<div style="padding-top: 12px;">
|
|
|
|
<MkInstanceStats :chart-limit="500" :detailed="true"/>
|
2021-10-22 10:04:19 -05:00
|
|
|
</div>
|
2021-10-23 14:03:07 -05:00
|
|
|
</MkContainer>
|
|
|
|
|
|
|
|
<div class="queue">
|
|
|
|
<MkContainer :foldable="true" :thin="true" class="deliver">
|
|
|
|
<template #header>Queue: deliver</template>
|
|
|
|
<MkQueueChart :connection="queueStatsConnection" domain="deliver"/>
|
|
|
|
</MkContainer>
|
|
|
|
<MkContainer :foldable="true" :thin="true" class="inbox">
|
|
|
|
<template #header>Queue: inbox</template>
|
|
|
|
<MkQueueChart :connection="queueStatsConnection" domain="inbox"/>
|
|
|
|
</MkContainer>
|
|
|
|
</div>
|
2021-10-22 10:04:19 -05:00
|
|
|
|
2021-10-23 14:03:07 -05:00
|
|
|
<!--<XMetrics/>-->
|
2021-10-21 15:36:48 -05:00
|
|
|
|
2021-10-23 14:03:07 -05:00
|
|
|
<MkFolder style="margin: var(--margin)">
|
|
|
|
<template #header><i class="fas fa-info-circle"></i> {{ $ts.info }}</template>
|
|
|
|
<div class="cfcdecdf">
|
|
|
|
<div class="number _panel">
|
|
|
|
<div class="label">Misskey</div>
|
|
|
|
<div class="value _monospace">{{ version }}</div>
|
2021-10-21 15:36:48 -05:00
|
|
|
</div>
|
2021-10-23 14:03:07 -05:00
|
|
|
<div class="number _panel" v-if="serverInfo">
|
|
|
|
<div class="label">Node.js</div>
|
|
|
|
<div class="value _monospace">{{ serverInfo.node }}</div>
|
|
|
|
</div>
|
|
|
|
<div class="number _panel" v-if="serverInfo">
|
|
|
|
<div class="label">PostgreSQL</div>
|
|
|
|
<div class="value _monospace">{{ serverInfo.psql }}</div>
|
|
|
|
</div>
|
|
|
|
<div class="number _panel" v-if="serverInfo">
|
|
|
|
<div class="label">Redis</div>
|
|
|
|
<div class="value _monospace">{{ serverInfo.redis }}</div>
|
|
|
|
</div>
|
|
|
|
<div class="number _panel">
|
|
|
|
<div class="label">Vue</div>
|
|
|
|
<div class="value _monospace">{{ vueVersion }}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</MkFolder>
|
2021-10-21 15:36:48 -05:00
|
|
|
</div>
|
2021-04-22 08:29:33 -05:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-10-22 10:04:19 -05:00
|
|
|
import { computed, defineComponent, markRaw, version as vueVersion } from 'vue';
|
2021-11-11 11:02:25 -06:00
|
|
|
import FormKeyValueView from '@/components/debobigego/key-value-view.vue';
|
|
|
|
import MkInstanceStats from '@/components/instance-stats.vue';
|
|
|
|
import MkButton from '@/components/ui/button.vue';
|
|
|
|
import MkSelect from '@/components/form/select.vue';
|
|
|
|
import MkNumberDiff from '@/components/number-diff.vue';
|
|
|
|
import MkContainer from '@/components/ui/container.vue';
|
|
|
|
import MkFolder from '@/components/ui/folder.vue';
|
|
|
|
import MkQueueChart from '@/components/queue-chart.vue';
|
|
|
|
import { version, url } from '@/config';
|
|
|
|
import bytes from '@/filters/bytes';
|
|
|
|
import number from '@/filters/number';
|
2021-04-22 08:29:33 -05:00
|
|
|
import MkInstanceInfo from './instance.vue';
|
|
|
|
import XMetrics from './metrics.vue';
|
2021-11-11 11:02:25 -06:00
|
|
|
import * as os from '@/os';
|
|
|
|
import * as symbols from '@/symbols';
|
2021-04-22 08:29:33 -05:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
2021-10-21 15:36:48 -05:00
|
|
|
MkNumberDiff,
|
2021-04-22 08:29:33 -05:00
|
|
|
FormKeyValueView,
|
|
|
|
MkInstanceStats,
|
2021-10-21 15:36:48 -05:00
|
|
|
MkContainer,
|
2021-10-22 03:15:12 -05:00
|
|
|
MkFolder,
|
2021-10-22 10:04:19 -05:00
|
|
|
MkQueueChart,
|
2021-04-22 08:29:33 -05:00
|
|
|
XMetrics,
|
|
|
|
},
|
|
|
|
|
|
|
|
emits: ['info'],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
[symbols.PAGE_INFO]: {
|
2021-10-21 15:36:48 -05:00
|
|
|
title: this.$ts.dashboard,
|
2021-10-02 09:11:21 -05:00
|
|
|
icon: 'fas fa-tachometer-alt',
|
|
|
|
bg: 'var(--bg)',
|
2021-04-22 08:29:33 -05:00
|
|
|
},
|
|
|
|
version,
|
2021-10-21 15:36:48 -05:00
|
|
|
vueVersion,
|
2021-04-22 08:29:33 -05:00
|
|
|
url,
|
|
|
|
stats: null,
|
2021-05-30 22:02:02 -05:00
|
|
|
meta: null,
|
2021-10-21 15:36:48 -05:00
|
|
|
serverInfo: null,
|
|
|
|
usersComparedToThePrevDay: null,
|
|
|
|
notesComparedToThePrevDay: null,
|
2021-04-22 08:29:33 -05:00
|
|
|
fetchJobs: () => os.api('admin/queue/deliver-delayed', {}),
|
|
|
|
fetchModLogs: () => os.api('admin/show-moderation-logs', {}),
|
2021-10-22 10:04:19 -05:00
|
|
|
queueStatsConnection: markRaw(os.stream.useChannel('queueStats')),
|
2021-04-22 08:29:33 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
async mounted() {
|
|
|
|
this.$emit('info', this[symbols.PAGE_INFO]);
|
2021-10-21 15:36:48 -05:00
|
|
|
|
|
|
|
os.api('meta', { detail: true }).then(meta => {
|
|
|
|
this.meta = meta;
|
|
|
|
});
|
|
|
|
|
|
|
|
os.api('stats', {}).then(stats => {
|
|
|
|
this.stats = stats;
|
|
|
|
|
|
|
|
os.api('charts/users', { limit: 2, span: 'day' }).then(chart => {
|
|
|
|
this.usersComparedToThePrevDay = this.stats.originalUsersCount - chart.local.total[1];
|
|
|
|
});
|
|
|
|
|
|
|
|
os.api('charts/notes', { limit: 2, span: 'day' }).then(chart => {
|
|
|
|
this.notesComparedToThePrevDay = this.stats.originalNotesCount - chart.local.total[1];
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
os.api('admin/server-info', {}).then(serverInfo => {
|
|
|
|
this.serverInfo = serverInfo;
|
|
|
|
});
|
2021-10-22 10:04:19 -05:00
|
|
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
this.queueStatsConnection.send('requestLog', {
|
|
|
|
id: Math.random().toString().substr(2, 8),
|
|
|
|
length: 200
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
beforeUnmount() {
|
|
|
|
this.queueStatsConnection.dispose();
|
2021-04-22 08:29:33 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
async showInstanceInfo(q) {
|
|
|
|
let instance = q;
|
|
|
|
if (typeof q === 'string') {
|
|
|
|
instance = await os.api('federation/show-instance', {
|
|
|
|
host: q
|
|
|
|
});
|
|
|
|
}
|
|
|
|
os.popup(MkInstanceInfo, {
|
|
|
|
instance: instance
|
|
|
|
}, {}, 'closed');
|
|
|
|
},
|
|
|
|
|
|
|
|
bytes,
|
|
|
|
|
|
|
|
number,
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
2021-10-21 15:36:48 -05:00
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.edbbcaef {
|
2021-10-22 03:15:12 -05:00
|
|
|
.cfcdecdf {
|
2021-10-21 15:36:48 -05:00
|
|
|
display: grid;
|
|
|
|
grid-gap: 8px;
|
2021-10-22 00:03:08 -05:00
|
|
|
grid-template-columns: repeat(auto-fill,minmax(150px,1fr));
|
2021-10-21 15:36:48 -05:00
|
|
|
|
|
|
|
> .number {
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
|
|
|
> .label {
|
|
|
|
opacity: 0.7;
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .value {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.2em;
|
|
|
|
|
|
|
|
> .diff {
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .charts {
|
|
|
|
margin: var(--margin);
|
|
|
|
}
|
2021-10-22 10:04:19 -05:00
|
|
|
|
|
|
|
> .queue {
|
|
|
|
margin: var(--margin);
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
> .deliver,
|
|
|
|
> .inbox {
|
|
|
|
flex: 1;
|
|
|
|
width: 50%;
|
|
|
|
|
|
|
|
&:not(:first-child) {
|
|
|
|
margin-left: var(--margin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-23 08:09:48 -05:00
|
|
|
&.max-width_740px {
|
2021-10-22 10:04:19 -05:00
|
|
|
> .queue {
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
> .deliver,
|
|
|
|
> .inbox {
|
2021-10-23 08:09:48 -05:00
|
|
|
width: 100%;
|
|
|
|
|
2021-10-22 10:04:19 -05:00
|
|
|
&:not(:first-child) {
|
|
|
|
margin-top: var(--margin);
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-10-21 15:36:48 -05:00
|
|
|
}
|
|
|
|
</style>
|