diff --git a/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/insights/om/om.tsx b/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/insights/om/om.tsx index f092708348b..06455aef47f 100644 --- a/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/insights/om/om.tsx +++ b/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/insights/om/om.tsx @@ -86,6 +86,7 @@ interface IKeyResponse { Volume: string; Bucket: string; Key: string; + CompletePath: string; DataSize: number; Versions: number[]; Blocks: object; @@ -114,6 +115,12 @@ const KEY_TABLE_COLUMNS = [ dataIndex: 'Key', key: 'Key' }, + { + title: 'Path', + dataIndex: 'CompletePath', + key: 'CompletePath', + width: '270px' + }, { title: 'Size', dataIndex: 'DataSize', diff --git a/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/missingContainers/missingContainers.tsx b/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/missingContainers/missingContainers.tsx index 5d107ab3d90..2b3aa2fcac9 100644 --- a/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/missingContainers/missingContainers.tsx +++ b/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/missingContainers/missingContainers.tsx @@ -73,6 +73,7 @@ interface IKeyResponse { Volume: string; Bucket: string; Key: string; + CompletePath: string; DataSize: number; Versions: number[]; Blocks: object; @@ -101,6 +102,12 @@ const KEY_TABLE_COLUMNS = [ dataIndex: 'Key', key: 'Key' }, + { + title: 'Path', + dataIndex: 'CompletePath', + key: 'CompletePath', + width: '270px' + }, { title: 'Size', dataIndex: 'DataSize',