Skip to content

Commit

Permalink
[pinpoint-apm#7497] ErrorAnalysis > Show groupedFieldName.uriTemplate
Browse files Browse the repository at this point in the history
  • Loading branch information
jihea-park committed Oct 22, 2024
1 parent 9163b00 commit 8ae255e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,12 @@ export namespace ErrorAnalysisGroupedErrorList {
count: number;
firstOccurred: number;
lastOccurred: number;
fieldName: FieldName;
chart: Chart;
groupedFieldName: {
errorClassName: string;
};
groupedFieldName: GroupedFieldName;
groupFilterParams: {
errorClassName: string;
errorClassName?: string;
errorMessage_logType?: string;
errorStackTraceHash?: string;
};
firstLineOfClassName: string;
firstLineOfMethodName: string;
Expand All @@ -35,7 +34,7 @@ export namespace ErrorAnalysisGroupedErrorList {
};
}

export interface FieldName {
export interface GroupedFieldName {
stackTraceHash?: string;
uriTemplate?: string;
errorMessage?: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const errorGroupedTableColumns = ({
},
cell: (props) => {
const original = props.row.original;
const fieldName = original?.fieldName;
const fieldName = original?.groupedFieldName;

return (
<>
Expand Down

0 comments on commit 8ae255e

Please sign in to comment.