2023-07-27 07:31:52 +02:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2021-01-03 14:38:32 +01:00
|
|
|
<template>
|
|
|
|
<div class="zlxnikvl">
|
|
|
|
<XPie class="pie" :value="usage"/>
|
|
|
|
<div>
|
2023-02-14 05:17:00 +01:00
|
|
|
<p><i class="ti ti-section"></i>RAM</p>
|
2021-01-03 14:38:32 +01:00
|
|
|
<p>Total: {{ bytes(total, 1) }}</p>
|
|
|
|
<p>Used: {{ bytes(used, 1) }}</p>
|
|
|
|
<p>Free: {{ bytes(free, 1) }}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-05-25 09:43:12 +02:00
|
|
|
<script lang="ts" setup>
|
2023-12-07 06:42:09 +01:00
|
|
|
import { onMounted, onBeforeUnmount, ref } from 'vue';
|
2023-12-26 06:19:35 +01:00
|
|
|
import * as Misskey from 'misskey-js';
|
2021-01-03 14:38:32 +01:00
|
|
|
import XPie from './pie.vue';
|
2023-09-19 09:37:43 +02:00
|
|
|
import bytes from '@/filters/bytes.js';
|
2021-01-03 14:38:32 +01:00
|
|
|
|
2022-05-25 09:43:12 +02:00
|
|
|
const props = defineProps<{
|
2024-01-07 15:56:46 +01:00
|
|
|
connection: Misskey.ChannelConnection<Misskey.Channels['serverStats']>,
|
2023-12-26 06:19:35 +01:00
|
|
|
meta: Misskey.entities.ServerInfoResponse
|
2022-05-25 09:43:12 +02:00
|
|
|
}>();
|
|
|
|
|
2023-12-07 06:42:09 +01:00
|
|
|
const usage = ref<number>(0);
|
|
|
|
const total = ref<number>(0);
|
|
|
|
const used = ref<number>(0);
|
|
|
|
const free = ref<number>(0);
|
2022-05-25 09:43:12 +02:00
|
|
|
|
2024-01-07 15:56:46 +01:00
|
|
|
function onStats(stats: Misskey.entities.ServerStats) {
|
2023-12-07 06:42:09 +01:00
|
|
|
usage.value = stats.mem.active / props.meta.mem.total;
|
|
|
|
total.value = props.meta.mem.total;
|
|
|
|
used.value = stats.mem.active;
|
|
|
|
free.value = total.value - used.value;
|
2022-05-25 09:43:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
props.connection.on('stats', onStats);
|
|
|
|
});
|
|
|
|
|
|
|
|
onBeforeUnmount(() => {
|
|
|
|
props.connection.off('stats', onStats);
|
2021-01-03 14:38:32 +01:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2022-12-27 10:29:39 +01:00
|
|
|
<style lang="scss" scoped>
|
2021-01-03 14:38:32 +01:00
|
|
|
.zlxnikvl {
|
|
|
|
display: flex;
|
|
|
|
padding: 16px;
|
|
|
|
|
|
|
|
> .pie {
|
|
|
|
height: 82px;
|
|
|
|
flex-shrink: 0;
|
|
|
|
margin-right: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> div {
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
> p {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 0.8em;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
2021-04-20 16:22:59 +02:00
|
|
|
> i {
|
2021-01-03 14:38:32 +01:00
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|