Skip to content

Commit

Permalink
[Infra UI] Add Disk Space Usage by Mount Point to Hosts Fly Out (#165852
Browse files Browse the repository at this point in the history
)

Closes #164209 
## Summary

This PR adds Disk Space Usage by Mount Point chart to host flyout

## Testing
Go to hosts view and open the host flyout
The Disk Space Usage by Mount Point chart should be visible:

<img width="1867" alt="image"
src="https://github.com/elastic/kibana/assets/14139027/113792be-07ee-4609-b1a2-e0527cd5b935">
  • Loading branch information
jennypavlova committed Sep 7, 2023
1 parent c15d769 commit 54057bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Expand Up @@ -22,6 +22,7 @@ export const hostMetricFlyoutCharts: XYConfig[] = [
normalizedLoad1m,
logRate,
diskSpaceUsageAvailable,
diskSpaceUsageByMountPoint,
diskThroughputReadWrite,
diskIOReadWrite,
rxTx,
Expand Down
4 changes: 2 additions & 2 deletions x-pack/test/functional/apps/infra/hosts_view.ts
Expand Up @@ -305,9 +305,9 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
});
});

it('should render 8 charts in the Metrics section', async () => {
it('should render 9 charts in the Metrics section', async () => {
const hosts = await pageObjects.assetDetails.getAssetDetailsMetricsCharts();
expect(hosts.length).to.equal(8);
expect(hosts.length).to.equal(9);
});

it('should show alerts', async () => {
Expand Down

0 comments on commit 54057bf

Please sign in to comment.