2023-07-27 14:31:52 +09:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2021-01-03 22:38:32 +09:00
|
|
|
<template>
|
|
|
|
<div class="vrvdvrys">
|
|
|
|
<XPie class="pie" :value="usage"/>
|
|
|
|
<div>
|
2022-12-19 19:01:30 +09:00
|
|
|
<p><i class="ti ti-cpu"></i>CPU</p>
|
2021-01-03 22:38:32 +09:00
|
|
|
<p>{{ meta.cpu.cores }} Logical cores</p>
|
|
|
|
<p>{{ meta.cpu.model }}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-05-25 16:43:12 +09:00
|
|
|
<script lang="ts" setup>
|
2023-12-07 14:42:09 +09:00
|
|
|
import { onMounted, onBeforeUnmount, ref } from 'vue';
|
2023-12-26 14:19:35 +09:00
|
|
|
import * as Misskey from 'misskey-js';
|
2021-01-03 22:38:32 +09:00
|
|
|
import XPie from './pie.vue';
|
|
|
|
|
2022-05-25 16:43:12 +09:00
|
|
|
const props = defineProps<{
|
2024-01-07 23:56:46 +09:00
|
|
|
connection: Misskey.ChannelConnection<Misskey.Channels['serverStats']>,
|
2023-12-26 14:19:35 +09:00
|
|
|
meta: Misskey.entities.ServerInfoResponse
|
2022-05-25 16:43:12 +09:00
|
|
|
}>();
|
|
|
|
|
2023-12-07 14:42:09 +09:00
|
|
|
const usage = ref<number>(0);
|
2022-05-25 16:43:12 +09:00
|
|
|
|
2024-01-07 23:56:46 +09:00
|
|
|
function onStats(stats: Misskey.entities.ServerStats) {
|
2023-12-07 14:42:09 +09:00
|
|
|
usage.value = stats.cpu;
|
2022-05-25 16:43:12 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
props.connection.on('stats', onStats);
|
|
|
|
});
|
|
|
|
|
|
|
|
onBeforeUnmount(() => {
|
|
|
|
props.connection.off('stats', onStats);
|
2021-01-03 22:38:32 +09:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2022-12-27 18:29:39 +09:00
|
|
|
<style lang="scss" scoped>
|
2021-01-03 22:38:32 +09:00
|
|
|
.vrvdvrys {
|
|
|
|
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 23:22:59 +09:00
|
|
|
> i {
|
2021-01-03 22:38:32 +09:00
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|