|
|
|
@ -1,5 +1,8 @@
|
|
|
|
|
import { BasicColumn, FormSchema, useRender } from '@/components/Table' |
|
|
|
|
import { DICT_TYPE, getDictOptions } from '@/utils/dict' |
|
|
|
|
import { Textarea } from 'ant-design-vue' |
|
|
|
|
import { h } from 'vue' |
|
|
|
|
import { DescItem } from '@/components/Description/index' |
|
|
|
|
|
|
|
|
|
export const columns: BasicColumn[] = [ |
|
|
|
|
{ |
|
|
|
@ -108,3 +111,139 @@ export const searchFormSchema: FormSchema[] = [
|
|
|
|
|
colProps: { span: 8 } |
|
|
|
|
} |
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
function renderText(value: string, color: string, bold = true) { |
|
|
|
|
return h('span', { style: { color, fontWeight: bold ? 'bold' : 'normal' } }, value) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const httpMethods = [ |
|
|
|
|
{ value: 'GET', color: '#108ee9' }, |
|
|
|
|
{ value: 'POST', color: '#2db7f5' }, |
|
|
|
|
{ value: 'PUT', color: 'warning' }, |
|
|
|
|
{ value: 'DELETE', color: '#f50' } |
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
export const infoSchema: DescItem[] = [ |
|
|
|
|
{ |
|
|
|
|
field: 'id', |
|
|
|
|
label: '异常id' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'traceId', |
|
|
|
|
label: '链路ID', |
|
|
|
|
show(data) { |
|
|
|
|
return data && data.traceId && data.traceId !== '' |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'applicationName', |
|
|
|
|
label: '应用名称', |
|
|
|
|
labelMinWidth: 100 |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'processStatus', |
|
|
|
|
label: '处理状态', |
|
|
|
|
render(_, data) { |
|
|
|
|
const { processStatus, processUserId } = data |
|
|
|
|
const tag = useRender.renderDict(processStatus, DICT_TYPE.INFRA_API_ERROR_LOG_PROCESS_STATUS) |
|
|
|
|
if (!processUserId) { |
|
|
|
|
return tag |
|
|
|
|
} |
|
|
|
|
const uidTag = useRender.renderTag('uid: ' + processUserId) |
|
|
|
|
return h('span', {}, [tag, uidTag]) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'processTime', |
|
|
|
|
label: '处理时间', |
|
|
|
|
show(data) { |
|
|
|
|
return data && data.processTime && data.processTime !== '' |
|
|
|
|
}, |
|
|
|
|
render(value) { |
|
|
|
|
return useRender.renderDate(value) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'userId', |
|
|
|
|
label: '用户id', |
|
|
|
|
render(value, data) { |
|
|
|
|
const tag = useRender.renderDict(data.userType, DICT_TYPE.USER_TYPE) |
|
|
|
|
const uidTag = useRender.renderTag('uid: ' + value) |
|
|
|
|
return h('span', {}, [tag, uidTag]) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'userIp', |
|
|
|
|
label: 'ip地址' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'requestUrl', |
|
|
|
|
label: '请求地址', |
|
|
|
|
render(_, data) { |
|
|
|
|
if (data) { |
|
|
|
|
const { requestMethod } = data |
|
|
|
|
const current = httpMethods.find((item) => item.value === requestMethod) |
|
|
|
|
const tag = current ? useRender.renderTag(requestMethod, current.color) : requestMethod |
|
|
|
|
return h('span', {}, [tag, data.requestUrl]) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'requestParams', |
|
|
|
|
label: '请求参数', |
|
|
|
|
render(value) { |
|
|
|
|
return useRender.renderJsonPreview(value) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'userAgent', |
|
|
|
|
label: 'userAgent' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'exceptionTime', |
|
|
|
|
label: '异常时间', |
|
|
|
|
render(value) { |
|
|
|
|
return useRender.renderDate(value) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'exceptionClassName', |
|
|
|
|
label: '异常类名/方法', |
|
|
|
|
render(_, data) { |
|
|
|
|
if (data) { |
|
|
|
|
return renderText(data.exceptionClassName + ' / ' + data.exceptionMethodName, 'red') |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'exceptionMessage', |
|
|
|
|
label: '异常信息', |
|
|
|
|
render(value) { |
|
|
|
|
return renderText(value, 'red') |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'exceptionFileName', |
|
|
|
|
label: '异常文件名', |
|
|
|
|
render(_, data) { |
|
|
|
|
if (data) { |
|
|
|
|
return useRender.renderText(data.exceptionFileName, 'Line: ' + data.exceptionLineNumber) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'exceptionName', |
|
|
|
|
label: '异常名称' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'exceptionRootCauseMessage', |
|
|
|
|
label: '异常信息' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'exceptionStackTrace', |
|
|
|
|
label: '异常堆栈', |
|
|
|
|
render(value) { |
|
|
|
|
return h(Textarea, { value, readonly: true, style: { minHeight: '300px' } }) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
] |
|
|
|
|