Skip to content

Commit 82cebca

Browse files
committed
[pinpoint-apm#7497] ErrorAnalysis > Show groupedFieldName.uriTemplate
1 parent 8631ec8 commit 82cebca

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

web-frontend/src/main/v3/packages/constants/src/types/ErrorAnalysisGroupedErrorList.ts

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,12 @@ export namespace ErrorAnalysisGroupedErrorList {
1616
count: number;
1717
firstOccurred: number;
1818
lastOccurred: number;
19-
fieldName: FieldName;
2019
chart: Chart;
21-
groupedFieldName: {
22-
errorClassName: string;
23-
};
20+
groupedFieldName: GroupedFieldName;
2421
groupFilterParams: {
25-
errorClassName: string;
22+
errorClassName?: string;
23+
errorMessage_logType?: string;
24+
errorStackTraceHash?: string;
2625
};
2726
firstLineOfClassName: string;
2827
firstLineOfMethodName: string;
@@ -35,7 +34,7 @@ export namespace ErrorAnalysisGroupedErrorList {
3534
};
3635
}
3736

38-
export interface FieldName {
37+
export interface GroupedFieldName {
3938
stackTraceHash?: string;
4039
uriTemplate?: string;
4140
errorMessage?: string;

web-frontend/src/main/v3/packages/ui/src/components/ErrorAnalysis/table/errorAnalysisGroupedTableColumn.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export const errorGroupedTableColumns = ({
3939
},
4040
cell: (props) => {
4141
const original = props.row.original;
42-
const fieldName = original?.fieldName;
42+
const fieldName = original?.groupedFieldName;
4343

4444
return (
4545
<>

0 commit comments

Comments
 (0)