+ {item.group_name}
+
+ {t('状态')}
+ {item.latest_success ? (
+ {t('正常')}
+ ) : (
+ {t('异常')}
+ )}
+
+
+ {t('延迟')}
+ {item.latest_latency}ms
+
+
+ {t('可用率')}
+
+ {item.availability > 0 ? `${item.availability.toFixed(1)}%` : '-'}
+
+
+
+ {t('平均延迟')}
+ {item.avg_latency > 0 ? `${Math.round(item.avg_latency)}ms` : '-'}
+
+
+ {item.latest_time > 0 ? dayjs.unix(item.latest_time).format('YYYY-MM-DD HH:mm:ss') : '-'}
+
+
+
+ );
+ })}
+ {statusData.length === 0 && (
+