Skip to content

Commit

Permalink
[8.15] [ML] Fix the memory usage chart visibility in the Nodes overvi…
Browse files Browse the repository at this point in the history
…ew table (elastic#190981) (elastic#193566)

# Backport

This will backport the following commits from `main` to `8.15`:
- [[ML] Fix the memory usage chart visibility in the Nodes overview
table (elastic#190981)](elastic#190981)

<!--- Backport version: 9.4.3 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sqren/backport)

<!--BACKPORT [{"author":{"name":"Dima
Arnautov","email":"[email protected]"},"sourceCommit":{"committedDate":"2024-08-26T14:30:58Z","message":"[ML]
Fix the memory usage chart visibility in the Nodes overview table
(elastic#190981)\n\n## Summary\r\n\r\nFixes the memory usage chart visibility
in the Nodes overview table \r\n\r\n### Checklist\r\n\r\n- [ ] [Unit or
functional\r\ntests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)\r\nwere
updated or added to match the most common
scenarios","sha":"b0beec1608f40b3b00f0aaaf40364cc03d822a61","branchLabelMapping":{"^v8.16.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":[":ml","release_note:skip","v9.0.0","Team:ML","backport:prev-minor","v8.16.0","v8.15.2"],"title":"[ML]
Fix the memory usage chart visibility in the Nodes overview table
","number":190981,"url":"https://github.com/elastic/kibana/pull/190981","mergeCommit":{"message":"[ML]
Fix the memory usage chart visibility in the Nodes overview table
(elastic#190981)\n\n## Summary\r\n\r\nFixes the memory usage chart visibility
in the Nodes overview table \r\n\r\n### Checklist\r\n\r\n- [ ] [Unit or
functional\r\ntests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)\r\nwere
updated or added to match the most common
scenarios","sha":"b0beec1608f40b3b00f0aaaf40364cc03d822a61"}},"sourceBranch":"main","suggestedTargetBranches":["8.15"],"targetPullRequestStates":[{"branch":"9.0","label":"v9.0.0","branchLabelMappingKey":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"},{"branch":"main","label":"v8.16.0","branchLabelMappingKey":"^v8.16.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/190981","number":190981,"mergeCommit":{"message":"[ML]
Fix the memory usage chart visibility in the Nodes overview table
(elastic#190981)\n\n## Summary\r\n\r\nFixes the memory usage chart visibility
in the Nodes overview table \r\n\r\n### Checklist\r\n\r\n- [ ] [Unit or
functional\r\ntests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)\r\nwere
updated or added to match the most common
scenarios","sha":"b0beec1608f40b3b00f0aaaf40364cc03d822a61"}},{"branch":"8.15","label":"v8.15.2","branchLabelMappingKey":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"}]}]
BACKPORT-->

Co-authored-by: Dima Arnautov <[email protected]>
Co-authored-by: Elastic Machine <[email protected]>
  • Loading branch information
3 people authored Sep 23, 2024
1 parent cf805b9 commit 9639bf4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export const NodesList: FC<NodesListProps> = ({ compactView = false }) => {
name: i18n.translate('xpack.ml.trainedModels.nodesList.nodeMemoryUsageHeader', {
defaultMessage: 'Memory usage',
}),
truncateText: true,
truncateText: false,
'data-test-subj': 'mlNodesTableColumnMemoryUsage',
render: (v: NodeItem) => {
return <MemoryPreviewChart memoryOverview={v.memory_overview} />;
Expand Down

0 comments on commit 9639bf4

Please sign in to comment.