2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2023-01-09 00:42:11 +00:00
|
|
|
<div class="pumxzjhg _gaps">
|
|
|
|
<div :class="$style.status">
|
|
|
|
<div class="item _panel"><div class="label">Process</div>{{ number(activeSincePrevTick) }}</div>
|
|
|
|
<div class="item _panel"><div class="label">Active</div>{{ number(active) }}</div>
|
|
|
|
<div class="item _panel"><div class="label">Waiting</div>{{ number(waiting) }}</div>
|
|
|
|
<div class="item _panel"><div class="label">Delayed</div>{{ number(delayed) }}</div>
|
2022-06-25 14:01:40 +00:00
|
|
|
</div>
|
|
|
|
<div class="charts">
|
|
|
|
<div class="chart">
|
|
|
|
<div class="title">Process</div>
|
|
|
|
<XChart ref="chartProcess" type="process"/>
|
2020-08-09 06:51:02 +00:00
|
|
|
</div>
|
2022-06-25 14:01:40 +00:00
|
|
|
<div class="chart">
|
|
|
|
<div class="title">Active</div>
|
|
|
|
<XChart ref="chartActive" type="active"/>
|
2021-04-22 13:29:33 +00:00
|
|
|
</div>
|
2022-06-25 14:01:40 +00:00
|
|
|
<div class="chart">
|
|
|
|
<div class="title">Delayed</div>
|
|
|
|
<XChart ref="chartDelayed" type="delayed"/>
|
|
|
|
</div>
|
|
|
|
<div class="chart">
|
|
|
|
<div class="title">Waiting</div>
|
|
|
|
<XChart ref="chartWaiting" type="waiting"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-01-09 00:42:11 +00:00
|
|
|
<MkFolder :default-open="true" :max-height="250">
|
|
|
|
<template #icon><i class="ti ti-alert-triangle"></i></template>
|
|
|
|
<template #label>Errored instances</template>
|
|
|
|
<template #suffix>({{ number(jobs.reduce((a, b) => a + b[1], 0)) }} jobs)</template>
|
|
|
|
|
|
|
|
<div :class="$style.jobs">
|
|
|
|
<div v-if="jobs.length > 0">
|
|
|
|
<div v-for="job in jobs" :key="job[0]">
|
|
|
|
<MkA :to="`/instance-info/${job[0]}`" behavior="window">{{ job[0] }}</MkA>
|
|
|
|
<span style="margin-left: 8px; opacity: 0.7;">({{ number(job[1]) }} jobs)</span>
|
|
|
|
</div>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
2023-01-09 00:42:11 +00:00
|
|
|
<span v-else style="opacity: 0.5;">{{ i18n.ts.noJobs }}</span>
|
2020-03-20 15:21:33 +00:00
|
|
|
</div>
|
2023-01-09 00:42:11 +00:00
|
|
|
</MkFolder>
|
2021-04-22 13:29:33 +00:00
|
|
|
</div>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-05-17 16:31:04 +00:00
|
|
|
<script lang="ts" setup>
|
2022-06-25 14:01:40 +00:00
|
|
|
import { markRaw, onMounted, onUnmounted, ref } from 'vue';
|
|
|
|
import XChart from './queue.chart.chart.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import number from '@/filters/number';
|
|
|
|
import * as os from '@/os';
|
2022-06-25 14:01:40 +00:00
|
|
|
import { stream } from '@/stream';
|
2022-07-20 13:24:26 +00:00
|
|
|
import { i18n } from '@/i18n';
|
2023-01-09 00:42:11 +00:00
|
|
|
import MkFolder from '@/components/MkFolder.vue';
|
2022-06-25 14:01:40 +00:00
|
|
|
|
|
|
|
const connection = markRaw(stream.useChannel('queueStats'));
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-05-17 16:31:04 +00:00
|
|
|
const activeSincePrevTick = ref(0);
|
|
|
|
const active = ref(0);
|
|
|
|
const delayed = ref(0);
|
2022-06-25 14:01:40 +00:00
|
|
|
const waiting = ref(0);
|
2022-05-17 16:31:04 +00:00
|
|
|
const jobs = ref([]);
|
2023-01-03 04:37:32 +00:00
|
|
|
let chartProcess = $shallowRef<InstanceType<typeof XChart>>();
|
|
|
|
let chartActive = $shallowRef<InstanceType<typeof XChart>>();
|
|
|
|
let chartDelayed = $shallowRef<InstanceType<typeof XChart>>();
|
|
|
|
let chartWaiting = $shallowRef<InstanceType<typeof XChart>>();
|
2021-10-22 14:46:47 +00:00
|
|
|
|
2022-05-17 16:31:04 +00:00
|
|
|
const props = defineProps<{
|
2022-06-25 14:01:40 +00:00
|
|
|
domain: string;
|
2022-05-17 16:31:04 +00:00
|
|
|
}>();
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-06-25 14:01:40 +00:00
|
|
|
const onStats = (stats) => {
|
|
|
|
activeSincePrevTick.value = stats[props.domain].activeSincePrevTick;
|
|
|
|
active.value = stats[props.domain].active;
|
|
|
|
delayed.value = stats[props.domain].delayed;
|
|
|
|
waiting.value = stats[props.domain].waiting;
|
|
|
|
|
|
|
|
chartProcess.pushData(stats[props.domain].activeSincePrevTick);
|
|
|
|
chartActive.pushData(stats[props.domain].active);
|
|
|
|
chartDelayed.pushData(stats[props.domain].delayed);
|
|
|
|
chartWaiting.pushData(stats[props.domain].waiting);
|
|
|
|
};
|
|
|
|
|
|
|
|
const onStatsLog = (statsLog) => {
|
|
|
|
const dataProcess = [];
|
|
|
|
const dataActive = [];
|
|
|
|
const dataDelayed = [];
|
|
|
|
const dataWaiting = [];
|
|
|
|
|
|
|
|
for (const stats of [...statsLog].reverse()) {
|
|
|
|
dataProcess.push(stats[props.domain].activeSincePrevTick);
|
|
|
|
dataActive.push(stats[props.domain].active);
|
|
|
|
dataDelayed.push(stats[props.domain].delayed);
|
|
|
|
dataWaiting.push(stats[props.domain].waiting);
|
|
|
|
}
|
|
|
|
|
|
|
|
chartProcess.setData(dataProcess);
|
|
|
|
chartActive.setData(dataActive);
|
|
|
|
chartDelayed.setData(dataDelayed);
|
|
|
|
chartWaiting.setData(dataWaiting);
|
|
|
|
};
|
|
|
|
|
2022-05-17 16:31:04 +00:00
|
|
|
onMounted(() => {
|
|
|
|
os.api(props.domain === 'inbox' ? 'admin/queue/inbox-delayed' : props.domain === 'deliver' ? 'admin/queue/deliver-delayed' : null, {}).then(result => {
|
|
|
|
jobs.value = result;
|
|
|
|
});
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-06-25 14:01:40 +00:00
|
|
|
connection.on('stats', onStats);
|
|
|
|
connection.on('statsLog', onStatsLog);
|
|
|
|
connection.send('requestLog', {
|
|
|
|
id: Math.random().toString().substr(2, 8),
|
|
|
|
length: 200,
|
2022-05-17 16:31:04 +00:00
|
|
|
});
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
2022-06-25 14:01:40 +00:00
|
|
|
|
|
|
|
onUnmounted(() => {
|
|
|
|
connection.off('stats', onStats);
|
|
|
|
connection.off('statsLog', onStatsLog);
|
|
|
|
connection.dispose();
|
|
|
|
});
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|
2021-04-22 13:29:33 +00:00
|
|
|
|
2022-12-27 09:29:39 +00:00
|
|
|
<style lang="scss" scoped>
|
2021-04-22 13:29:33 +00:00
|
|
|
.pumxzjhg {
|
2022-06-25 14:01:40 +00:00
|
|
|
> .charts {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
2023-01-09 00:42:11 +00:00
|
|
|
gap: 10px;
|
2022-06-25 14:01:40 +00:00
|
|
|
|
|
|
|
> .chart {
|
|
|
|
min-width: 0;
|
|
|
|
padding: 16px;
|
|
|
|
background: var(--panel);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
|
|
|
|
> .title {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
}
|
2021-04-22 13:29:33 +00:00
|
|
|
}
|
2023-01-09 00:42:11 +00:00
|
|
|
}
|
|
|
|
</style>
|
2021-04-22 13:29:33 +00:00
|
|
|
|
2023-01-09 00:42:11 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.status {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
|
|
|
|
grid-gap: 10px;
|
|
|
|
|
|
|
|
&:global {
|
|
|
|
> .item {
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
|
|
|
> .label {
|
|
|
|
font-size: 80%;
|
|
|
|
opacity: 0.6;
|
|
|
|
}
|
|
|
|
}
|
2021-04-22 13:29:33 +00:00
|
|
|
}
|
2023-01-09 00:42:11 +00:00
|
|
|
}
|
2022-06-25 14:01:40 +00:00
|
|
|
|
2023-01-09 00:42:11 +00:00
|
|
|
.jobs {
|
2021-04-22 13:29:33 +00:00
|
|
|
}
|
|
|
|
</style>
|