Skip to content

Commit

Permalink
[Index Management] Testing: add an ILM phase column
Browse files Browse the repository at this point in the history
  • Loading branch information
yuliacech committed Jan 12, 2024
1 parent 9c1edca commit 86864fe
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -226,4 +226,11 @@ export const addAllExtensions = (
extensionsService.addFilter(ilmFilterExtension);

extensionsService.addIndexDetailsTab(indexLifecycleTab);

extensionsService.addColumn({
label: 'ILM phase',
fieldName: 'ilm.phase',
order: 90,
render: (index: Index) => (index.ilm?.managed ? index.ilm.phase : ''),
});
};

0 comments on commit 86864fe

Please sign in to comment.