File tree Expand file tree Collapse file tree 2 files changed +3
-20
lines changed
src/containers/Tenant/Diagnostics/TenantOverview Expand file tree Collapse file tree 2 files changed +3
-20
lines changed Original file line number Diff line number Diff line change @@ -31,37 +31,24 @@ export function TenantCpu({tenantName, additionalNodesProps}: TenantCpuProps) {
3131 return (
3232 < Flex direction = "column" gap = { 4 } >
3333 < TenantDashboard database = { tenantName } charts = { cpuDashboardConfig } />
34- < StatsWrapper
35- allEntitiesLink = { allNodesLink }
36- title = { i18n ( 'title_top-nodes-load' ) }
37- description = { i18n ( 'context_top-nodes-load' ) }
38- >
34+ < StatsWrapper allEntitiesLink = { allNodesLink } title = { i18n ( 'title_top-nodes-load' ) } >
3935 < TopNodesByLoad
4036 tenantName = { tenantName }
4137 additionalNodesProps = { additionalNodesProps }
4238 />
4339 </ StatsWrapper >
44- < StatsWrapper
45- title = { i18n ( 'title_top-nodes-pool' ) }
46- allEntitiesLink = { allNodesLink }
47- description = { i18n ( 'context_top-nodes-pool' ) }
48- >
40+ < StatsWrapper title = { i18n ( 'title_top-nodes-pool' ) } allEntitiesLink = { allNodesLink } >
4941 < TopNodesByCpu
5042 tenantName = { tenantName }
5143 additionalNodesProps = { additionalNodesProps }
5244 />
5345 </ StatsWrapper >
54- < StatsWrapper
55- title = { i18n ( 'title_top-shards' ) }
56- allEntitiesLink = { topShardsLink }
57- description = { i18n ( 'context_top-shards' ) }
58- >
46+ < StatsWrapper title = { i18n ( 'title_top-shards' ) } allEntitiesLink = { topShardsLink } >
5947 < TopShards tenantName = { tenantName } path = { tenantName } />
6048 </ StatsWrapper >
6149 < StatsWrapper
6250 title = { i18n ( 'title_top-queries' ) }
6351 allEntitiesLink = { topQueriesLink }
64- description = { i18n ( 'context_top-queries' ) }
6552 onAllEntitiesClick = { ( ) =>
6653 dispatch ( setTopQueriesFilters ( { from : undefined , to : undefined } ) )
6754 }
Original file line number Diff line number Diff line change 66 "by-memory" : " by memory" ,
77 "by-usage" : " by usage" ,
88 "title_top-nodes-load" : " Top nodes by load" ,
9- "context_top-nodes-load" : " Monitor overloaded nodes to redistribute the load" ,
109 "title_top-nodes-pool" : " Top nodes by pools usage" ,
11- "context_top-nodes-pool" : " Monitor pool resource overuse for targeted optimization" ,
1210 "cards.cpu-label" : " CPU load" ,
1311 "cards.storage-label" : " Storage" ,
1412 "cards.memory-label" : " Memory used" ,
3230 "storage.db-storage-title" : " Database storage" ,
3331 "storage.db-storage-description" : " Size of data stored in distributed storage with all overheads for redundancy" ,
3432 "title_top-shards" : " Top shards by CPU usage" ,
35- "context_top-shards" : " Identify hot spots for load balancing" ,
3633 "title_top-queries" : " Top queries by CPU usage" ,
37- "context_top-queries" : " Find the most resource-intensive queries for optimization" ,
3834 "title_top-tables-by-size" : " Top Tables By Size" ,
3935 "title_top-groups-by-usage" : " Top Groups By Usage" ,
4036 "action_by-load" : " By Load" ,
You can’t perform that action at this time.
0 commit comments