You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ozone.apache.org by si...@apache.org on 2022/11/10 19:49:43 UTC

[ozone] branch master updated: HDDS-7469. Recon: Add more information to Open Containers column on on the Datanodes page. (#3944)

This is an automated email from the ASF dual-hosted git repository.

siyao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ozone.git


The following commit(s) were added to refs/heads/master by this push:
     new 4dc3083954 HDDS-7469. Recon: Add more information to Open Containers column on on the Datanodes page. (#3944)
4dc3083954 is described below

commit 4dc3083954b92310f5da8c8dcc9551f22994eeaf
Author: smitajoshi12 <11...@users.noreply.github.com>
AuthorDate: Fri Nov 11 01:19:37 2022 +0530

    HDDS-7469. Recon: Add more information to Open Containers column on on the Datanodes page. (#3944)
---
 .../recon/ozone-recon-web/src/views/datanodes/datanodes.tsx       | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/datanodes/datanodes.tsx b/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/datanodes/datanodes.tsx
index f3829fabe2..02296ce621 100644
--- a/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/datanodes/datanodes.tsx
+++ b/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/datanodes/datanodes.tsx
@@ -232,7 +232,13 @@ const COLUMNS = [
     sorter: (a: IDatanode, b: IDatanode) => a.containers - b.containers
   },
   {
-    title: 'Open Containers',
+    title:
+    <span>
+    Open Containers&nbsp;
+    <Tooltip title='The number of open containers per pipeline.'>
+      <Icon type='info-circle'/>
+    </Tooltip>
+  </span>,
     dataIndex: 'openContainers',
     key: 'openContainers',
     isVisible: true,


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@ozone.apache.org
For additional commands, e-mail: commits-help@ozone.apache.org