update sys info

master
veypi 1 year ago
parent ff8525ad2b
commit bb49108a5f

@ -64,7 +64,7 @@ async fn web(data: AppState) -> Result<()> {
return Err(oab::Error::Unknown); return Err(oab::Error::Unknown);
} }
}; };
libs::task::start_nats_online(client.clone()); // libs::task::start_nats_online(client.clone());
client client
.publish("msg".to_string(), Bytes::from("asd")) .publish("msg".to_string(), Bytes::from("asd"))
.await .await

@ -11,6 +11,7 @@ import token from "./token";
import user from "./user"; import user from "./user";
import resource from "./resource"; import resource from "./resource";
import access from './access'; import access from './access';
import nats from './nats'
@ -21,6 +22,7 @@ const api = {
role, role,
resource, resource,
access, access,
nats
} }

@ -6,20 +6,32 @@
--> -->
<template> <template>
<div> <div>
<div v-if="data.server?.id"> <div v-if="id">
<div class="text-2xl mb-4"> <div class="text-2xl mb-4">
消息服务 消息服务
<div class="float-right text-sm">{{ new Date(data.server.time).toLocaleString() }}</div> <div class="float-right text-sm">{{ new Date(data.now).toLocaleString() }}</div>
</div> </div>
<div class=""> <div class="">
<div class="w-full">ID: {{ data.server?.id }}</div> <div class="w-full">ID: {{ id }}</div>
<div class="flex gap-8"> <div class="flex gap-8">
<div>CPU占用: {{ data.statsz.cpu }}%</div> <div>CPU占用: {{ data.cpu }}%</div>
<div>内存占用: {{ (data.statsz.mem / 1024 / 1024).toFixed(2) }}M</div> <div>内存占用: {{ (data.mem / 1024 / 1024).toFixed(2) }}M</div>
<div>连接数: {{ data.statsz.connections }}</div> <div>连接数: {{ data.connections }}</div>
</div> </div>
<div>发送: {{ (send_received[1] / 1024).toFixed(2) }} KB/s</div> <div>发送: {{ (send_received[0] / 1024).toFixed(2) }} KB/s</div>
<div>收到: {{ (send_received[0] / 1024).toFixed(2) }} KB/s</div> <div>收到: {{ (send_received[1] / 1024).toFixed(2) }} KB/s</div>
</div>
<div class="grid grid-cols-4 gap-4 mt-10" v-if="conns.length">
<div>ID</div>
<div>Name</div>
<div>运行时间</div>
<div>订阅主题</div>
<template v-for="c of conns" :key="c.cid">
<div>{{ c.cid }}</div>
<div>{{ c.name || '无' }}</div>
<div>{{ new Date(c.start).toLocaleString() }}</div>
<div>{{ c.subscriptions_list.sort().join(' ') }}</div>
</template>
</div> </div>
</div> </div>
</div> </div>
@ -28,10 +40,12 @@
<script lang="ts" setup> <script lang="ts" setup>
import { computed, ref, watch, onUnmounted } from 'vue'; import { computed, ref, watch, onUnmounted } from 'vue';
import { nats } from '@veypi/oaer' import { nats } from '@veypi/oaer'
import api from 'src/boot/api'
const data = ref({} as any) const data = ref({} as any)
const id = computed(() => data.value.server?.id) const conns = ref<any[]>([])
const id = computed(() => data.value.server_id)
const subs: any[] = [] const subs: any[] = []
const timer = ref() const timer = ref()
@ -40,8 +54,8 @@ const send_received = computed(() => {
if (!id.value) { if (!id.value) {
return [0, 0] return [0, 0]
} }
let os = data.value.statsz.sent.bytes let os = data.value.out_bytes
let or = data.value.statsz.received.bytes let or = data.value.in_bytes
let res = [os - old_data[0], or - old_data[1]] let res = [os - old_data[0], or - old_data[1]]
old_data = [os, or] old_data = [os, or]
return res return res
@ -49,25 +63,37 @@ const send_received = computed(() => {
watch(id, (_) => { watch(id, (_) => {
timer.value = setInterval(() => { timer.value = setInterval(() => {
nats.request('$SYS.REQ.SERVER.PING').then((m) => { api.nats.general().then(e => {
data.value = JSON.parse(m) data.value = e
})
api.nats.conns().then(e => {
conns.value = e.connections
}) })
// nats.request('$SYS.REQ.SERVER.PING').then((m) => {
// data.value = JSON.parse(m)
// })
}, 1000) }, 1000)
}) })
watch(computed(() => nats.ready.value), e => { watch(computed(() => nats.ready.value), e => {
if (e) { if (e) {
nats.request('$SYS.REQ.SERVER.PING').then((m) => { api.nats.general().then(e => {
data.value = JSON.parse(m) old_data = [e.out_bytes, e.in_bytes]
let os = data.value.statsz.sent.bytes data.value = e
let or = data.value.statsz.received.bytes
old_data = [os, or]
}) })
// nats.request('$SYS.REQ.SERVER.PING').then((m) => {
// data.value = JSON.parse(m)
// let os = data.value.statsz.sent.bytes
// let or = data.value.statsz.received.bytes
// old_data = [os, or]
// })
} }
}, { immediate: true }) }, { immediate: true })
onUnmounted(() => { onUnmounted(() => {
clearInterval(timer.value) if (timer.value) {
clearInterval(timer.value)
}
for (let i of subs) { for (let i of subs) {
i.unsubscribe() i.unsubscribe()
} }

Loading…
Cancel
Save