Skip to content

Commit

Permalink
[Monitoring] Add Version column to Cluster Listing table (#151638)
Browse files Browse the repository at this point in the history
Fixes #151508 

<img width="1775" alt="Screenshot 2023-02-20 at 16 42 38"
src="https://user-images.githubusercontent.com/2564140/220149715-26097b5c-601e-498d-8523-9db7d9d43891.png">

Using the data already provided by the API, I've added a new column to
the cluster listing table to show the version there as well.
  • Loading branch information
miltonhultgren authored Feb 20, 2023
1 parent 4381fcc commit 3acff6f
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,14 @@ const getColumns = (
);
},
},
{
name: i18n.translate('xpack.monitoring.cluster.listing.versionColumnTitle', {
defaultMessage: 'Version',
}),
field: 'version',
'data-test-subj': 'clusterVersion',
sortable: true,
},
];
};

Expand Down

0 comments on commit 3acff6f

Please sign in to comment.