feature/1.8-Improve system observability

This commit is contained in:
ningyv
2025-04-30 09:46:01 +08:00
parent 119e03fda8
commit f1e5b29908
8 changed files with 24 additions and 8 deletions
@@ -189,6 +189,7 @@ export const TranslateWord = () => {
{$t('鉴权名称')}
{$t('日志输出')}
{$t('响应时间')}
{$t('时间戳')}
</>
)
}
@@ -247,6 +247,8 @@
"消费者 IP": "K1bc5e0a3",
"鉴权名称": "K6f39ea21",
"日志输出": "K3c722abd",
"响应时间": "K1be06929",
"时间戳": "K5e51f5d",
"暂无操作权限,请联系管理员分配。": "K23fda291",
"微信小程序": "K4618cb0a",
"获取文件,需填路径": "Ka854f511",
@@ -965,5 +965,6 @@
"K74a5fbc0": "Log Output Settings",
"Kc8bf447": "Request Log",
"Kf8525cf2": "No Data",
"K1be06929": "Response Time"
"K1be06929": "Response Time",
"K5e51f5d": "Timestamp"
}
@@ -987,5 +987,6 @@
"K74a5fbc0": "ログ出力設定",
"Kc8bf447": "リクエストログ",
"Kf8525cf2": "データがありません",
"K1be06929": "応答時間"
"K1be06929": "応答時間",
"K5e51f5d": "タイムスタンプ"
}
@@ -916,5 +916,6 @@
"K74a5fbc0": "日志输出设置",
"Kc8bf447": "请求日志",
"Kf8525cf2": "暂无数据",
"K1be06929": "响应时间"
"K1be06929": "响应时间",
"K5e51f5d": "时间"
}
@@ -987,5 +987,6 @@
"K74a5fbc0": "日誌輸出設定",
"Kc8bf447": "請求日誌",
"Kf8525cf2": "暫無資料",
"K1be06929": "回應時間"
"K1be06929": "回應時間",
"K5e51f5d": "時間"
}
@@ -549,8 +549,10 @@ export const REST_SERVICE_TOP_RANKING_LIST: PageProColumns<any>[] = [
/** REST 服务日志 */
export const REST_SERVICE_LOG_LIST: PageProColumns<LogItem>[] = [
{
title: '时间',
title: '时间',
dataIndex: 'logTime',
copyable: false,
width: 180,
ellipsis: true
},
{
@@ -571,11 +573,14 @@ export const REST_SERVICE_LOG_LIST: PageProColumns<LogItem>[] = [
{
title: 'IP',
dataIndex: 'ip',
copyable: true,
width: 140,
ellipsis: true
},
{
title: '响应时间',
dataIndex: 'responseTime',
width: 130,
ellipsis: true
},
{
@@ -588,8 +593,10 @@ export const REST_SERVICE_LOG_LIST: PageProColumns<LogItem>[] = [
/** AI 服务日志 */
export const AI_SERVICE_LOG_LIST: PageProColumns<LogItem>[] = [
{
title: '时间',
title: '时间',
dataIndex: 'logTime',
copyable: false,
width: 200,
ellipsis: true
},
{
@@ -615,6 +622,8 @@ export const AI_SERVICE_LOG_LIST: PageProColumns<LogItem>[] = [
{
title: 'IP',
dataIndex: 'ip',
copyable: true,
width: 140,
ellipsis: true
},
{
@@ -161,7 +161,7 @@ const LogDetail = ({ selectedRow, serviceType, serviceId, teamId }: LogDetailPro
setDescriptionItems([
{
key: 'time',
label: $t('时间'),
label: $t('时间'),
children: time
},
{
@@ -213,7 +213,7 @@ const LogDetail = ({ selectedRow, serviceType, serviceId, teamId }: LogDetailPro
setDescriptionItems([
{
key: 'time',
label: $t('时间'),
label: $t('时间'),
children: time
},
{