Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Infra UI] Add Disk Space Usage by Mount Point to Hosts Fly Out #165852

Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export const hostMetricCharts: 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
Original file line number Diff line number Diff line change
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