File tree Expand file tree Collapse file tree 1 file changed +14
-5
lines changed
hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/v2/pages/overview Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -203,6 +203,7 @@ const Overview: React.FC<{}> = () => {
203203 keys,
204204 pipelines,
205205 deletedContainers,
206+ openContainers,
206207 omServiceId,
207208 scmServiceId
208209 } = clusterState . data ;
@@ -290,7 +291,7 @@ const Overview: React.FC<{}> = () => {
290291 lg : 16 ,
291292 xl : 16
292293 } , 20 ] } >
293- < Col flex = "1 0 20 %" >
294+ < Col flex = "1 0 15 %" >
294295 < OverviewSimpleCard
295296 title = 'Volumes'
296297 icon = 'inbox'
@@ -299,7 +300,7 @@ const Overview: React.FC<{}> = () => {
299300 linkToUrl = '/Volumes'
300301 error = { clusterState . error } />
301302 </ Col >
302- < Col flex = "1 0 20 %" >
303+ < Col flex = "1 0 15 %" >
303304 < OverviewSimpleCard
304305 title = 'Buckets'
305306 icon = 'folder-open'
@@ -308,15 +309,15 @@ const Overview: React.FC<{}> = () => {
308309 linkToUrl = '/Buckets'
309310 error = { clusterState . error } />
310311 </ Col >
311- < Col flex = "1 0 20 %" >
312+ < Col flex = "1 0 15 %" >
312313 < OverviewSimpleCard
313314 title = 'Keys'
314315 icon = 'file-text'
315316 loading = { clusterState . loading }
316317 data = { keys }
317318 error = { clusterState . error } />
318319 </ Col >
319- < Col flex = "1 0 20 %" >
320+ < Col flex = "1 0 15 %" >
320321 < OverviewSimpleCard
321322 title = 'Pipelines'
322323 icon = 'deployment-unit'
@@ -325,14 +326,22 @@ const Overview: React.FC<{}> = () => {
325326 linkToUrl = '/Pipelines'
326327 error = { clusterState . error } />
327328 </ Col >
328- < Col flex = "1 0 20 %" >
329+ < Col flex = "1 0 15 %" >
329330 < OverviewSimpleCard
330331 title = 'Deleted Containers'
331332 icon = 'delete'
332333 loading = { clusterState . loading }
333334 data = { deletedContainers }
334335 error = { clusterState . error } />
335336 </ Col >
337+ < Col flex = "1 0 15%" >
338+ < OverviewSimpleCard
339+ title = 'Open Containers'
340+ icon = 'container'
341+ loading = { clusterState . loading }
342+ data = { openContainers }
343+ error = { clusterState . error } />
344+ </ Col >
336345 </ Row >
337346 < Row gutter = { [
338347 {
You can’t perform that action at this time.
0 commit comments