- 新增帮助提示组件(HelpTooltip.vue) - 更新侧边栏添加 ops 监控菜单项 - 扩展设置视图集成 ops 配置面板 - 新增 ops 监控视图目录(dashboard, alerts, realtime, settings 等)
186 lines
6.0 KiB
Vue
186 lines
6.0 KiB
Vue
<script setup lang="ts">
|
|
import { computed } from 'vue'
|
|
import { useI18n } from 'vue-i18n'
|
|
import {
|
|
Chart as ChartJS,
|
|
CategoryScale,
|
|
Filler,
|
|
Legend,
|
|
LineElement,
|
|
LinearScale,
|
|
PointElement,
|
|
Title,
|
|
Tooltip
|
|
} from 'chart.js'
|
|
import { Line } from 'vue-chartjs'
|
|
import type { OpsErrorTrendPoint } from '@/api/admin/ops'
|
|
import type { ChartState } from '../types'
|
|
import { formatHistoryLabel, sumNumbers } from '../utils/opsFormatters'
|
|
import HelpTooltip from '@/components/common/HelpTooltip.vue'
|
|
import EmptyState from '@/components/common/EmptyState.vue'
|
|
|
|
ChartJS.register(Title, Tooltip, Legend, LineElement, LinearScale, PointElement, CategoryScale, Filler)
|
|
|
|
interface Props {
|
|
points: OpsErrorTrendPoint[]
|
|
loading: boolean
|
|
timeRange: string
|
|
}
|
|
|
|
const props = defineProps<Props>()
|
|
const emit = defineEmits<{
|
|
(e: 'openRequestErrors'): void
|
|
(e: 'openUpstreamErrors'): void
|
|
}>()
|
|
const { t } = useI18n()
|
|
|
|
const isDarkMode = computed(() => document.documentElement.classList.contains('dark'))
|
|
const colors = computed(() => ({
|
|
red: '#ef4444',
|
|
redAlpha: '#ef444420',
|
|
purple: '#8b5cf6',
|
|
purpleAlpha: '#8b5cf620',
|
|
gray: '#9ca3af',
|
|
grid: isDarkMode.value ? '#374151' : '#f3f4f6',
|
|
text: isDarkMode.value ? '#9ca3af' : '#6b7280'
|
|
}))
|
|
|
|
const totalErrors = computed(() => sumNumbers(props.points.map((p) => p.error_count_sla ?? 0)))
|
|
|
|
const chartData = computed(() => {
|
|
if (!props.points.length || totalErrors.value <= 0) return null
|
|
return {
|
|
labels: props.points.map((p) => formatHistoryLabel(p.bucket_start, props.timeRange)),
|
|
datasets: [
|
|
{
|
|
label: t('admin.ops.errorsSla'),
|
|
data: props.points.map((p) => p.error_count_sla ?? 0),
|
|
borderColor: colors.value.red,
|
|
backgroundColor: colors.value.redAlpha,
|
|
fill: true,
|
|
tension: 0.35,
|
|
pointRadius: 0,
|
|
pointHitRadius: 10
|
|
},
|
|
{
|
|
label: t('admin.ops.upstreamExcl429529'),
|
|
data: props.points.map((p) => p.upstream_error_count_excl_429_529 ?? 0),
|
|
borderColor: colors.value.purple,
|
|
backgroundColor: colors.value.purpleAlpha,
|
|
fill: true,
|
|
tension: 0.35,
|
|
pointRadius: 0,
|
|
pointHitRadius: 10
|
|
},
|
|
{
|
|
label: t('admin.ops.businessLimited'),
|
|
data: props.points.map((p) => p.business_limited_count ?? 0),
|
|
borderColor: colors.value.gray,
|
|
backgroundColor: 'transparent',
|
|
borderDash: [6, 6],
|
|
fill: false,
|
|
tension: 0.35,
|
|
pointRadius: 0,
|
|
pointHitRadius: 10
|
|
}
|
|
]
|
|
}
|
|
})
|
|
|
|
const state = computed<ChartState>(() => {
|
|
if (chartData.value) return 'ready'
|
|
if (props.loading) return 'loading'
|
|
return 'empty'
|
|
})
|
|
|
|
const options = computed(() => {
|
|
const c = colors.value
|
|
return {
|
|
responsive: true,
|
|
maintainAspectRatio: false,
|
|
interaction: { intersect: false, mode: 'index' as const },
|
|
plugins: {
|
|
legend: {
|
|
position: 'top' as const,
|
|
align: 'end' as const,
|
|
labels: { color: c.text, usePointStyle: true, boxWidth: 6, font: { size: 10 } }
|
|
},
|
|
tooltip: {
|
|
backgroundColor: isDarkMode.value ? '#1f2937' : '#ffffff',
|
|
titleColor: isDarkMode.value ? '#f3f4f6' : '#111827',
|
|
bodyColor: isDarkMode.value ? '#d1d5db' : '#4b5563',
|
|
borderColor: c.grid,
|
|
borderWidth: 1,
|
|
padding: 10,
|
|
displayColors: true
|
|
}
|
|
},
|
|
scales: {
|
|
x: {
|
|
type: 'category' as const,
|
|
grid: { display: false },
|
|
ticks: {
|
|
color: c.text,
|
|
font: { size: 10 },
|
|
maxTicksLimit: 8,
|
|
autoSkip: true,
|
|
autoSkipPadding: 10
|
|
}
|
|
},
|
|
y: {
|
|
type: 'linear' as const,
|
|
display: true,
|
|
position: 'left' as const,
|
|
grid: { color: c.grid, borderDash: [4, 4] },
|
|
ticks: { color: c.text, font: { size: 10 }, precision: 0 }
|
|
}
|
|
}
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex h-full flex-col rounded-3xl bg-white p-6 shadow-sm ring-1 ring-gray-900/5 dark:bg-dark-800 dark:ring-dark-700">
|
|
<div class="mb-4 flex shrink-0 items-center justify-between">
|
|
<h3 class="flex items-center gap-2 text-sm font-bold text-gray-900 dark:text-white">
|
|
<svg class="h-4 w-4 text-rose-500" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
stroke-width="2"
|
|
d="M13 17h8m0 0V9m0 8l-8-8-4 4-6-6"
|
|
/>
|
|
</svg>
|
|
{{ t('admin.ops.errorTrend') }}
|
|
<HelpTooltip :content="t('admin.ops.tooltips.errorTrend')" />
|
|
</h3>
|
|
<div class="flex items-center gap-2">
|
|
<button
|
|
type="button"
|
|
class="inline-flex items-center rounded-lg border border-gray-200 bg-white px-2 py-1 text-[11px] font-semibold text-gray-600 hover:bg-gray-50 disabled:opacity-50 dark:border-dark-700 dark:bg-dark-900 dark:text-gray-300 dark:hover:bg-dark-800"
|
|
:disabled="state !== 'ready'"
|
|
@click="emit('openRequestErrors')"
|
|
>
|
|
{{ t('admin.ops.errorDetails.requestErrors') }}
|
|
</button>
|
|
<button
|
|
type="button"
|
|
class="inline-flex items-center rounded-lg border border-gray-200 bg-white px-2 py-1 text-[11px] font-semibold text-gray-600 hover:bg-gray-50 disabled:opacity-50 dark:border-dark-700 dark:bg-dark-900 dark:text-gray-300 dark:hover:bg-dark-800"
|
|
:disabled="state !== 'ready'"
|
|
@click="emit('openUpstreamErrors')"
|
|
>
|
|
{{ t('admin.ops.errorDetails.upstreamErrors') }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="min-h-0 flex-1">
|
|
<Line v-if="state === 'ready' && chartData" :data="chartData" :options="options" />
|
|
<div v-else class="flex h-full items-center justify-center">
|
|
<div v-if="state === 'loading'" class="animate-pulse text-sm text-gray-400">{{ t('common.loading') }}</div>
|
|
<EmptyState v-else :title="t('common.noData')" :description="t('admin.ops.charts.emptyError')" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|