vtutrinov commented on code in PR #6769:
URL: https://github.com/apache/ozone/pull/6769#discussion_r1631251236
##########
hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/overview/overview.tsx:
##########
@@ -302,6 +319,16 @@ export class Overview extends
React.Component<Record<string, object>, IOverviewS
<Col xs={24} sm={18} md={12} lg={12} xl={6} className='summary-font'>
<OverviewCard loading={loading} title='Pending Deleted Keys
Summary' data={deletePendingSummaryData} icon='delete' linkToUrl='/Om'/>
</Col>
+ {scmServiceId &&
+ <Col xs={24} sm={18} md={12} lg={12} xl={6}
className='summary-font'>
+ <OverviewCard title="Storage Container Manager"
loading={loading} data={scmServiceData} icon='file-text'/>
+ </Col>
Review Comment:
Done
##########
hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/overview/overview.tsx:
##########
@@ -230,6 +237,16 @@ export class Overview extends
React.Component<Record<string, object>, IOverviewS
{deletePendingSummarytotalDeletedKeys !== undefined ?
deletePendingSummarytotalDeletedKeys: '0'} <span
className='ant-card-meta-description meta'>Total Pending Delete Keys</span>
</div>
);
+ const scmServiceData = (
+ <div>
+ Service Id: <span className="ant-card-meta-description meta"
style={{fontSize: "17px"}}>{scmServiceId}</span><br />
+ </div>
+ );
+ const omServiceData = (
+ <div>
+ Service Id: <span className="ant-card-meta-description meta"
style={{fontSize: "17px"}}>{omServiceId}</span>
+ </div>
+ );
Review Comment:
Done
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]