From 3b16cd6dfc4d8c8c424d1077a58020c270826221 Mon Sep 17 00:00:00 2001 From: Dzmitry Lemechko Date: Mon, 29 Jan 2024 13:35:16 +0100 Subject: [PATCH] skip scalability testing for cloud_security_dashboard journey --- .../journeys/cloud_security_dashboard.ts | 47 ++++++++++--------- 1 file changed, 24 insertions(+), 23 deletions(-) diff --git a/x-pack/performance/journeys/cloud_security_dashboard.ts b/x-pack/performance/journeys/cloud_security_dashboard.ts index ce5224e9b14b0..ddf8d734e826b 100644 --- a/x-pack/performance/journeys/cloud_security_dashboard.ts +++ b/x-pack/performance/journeys/cloud_security_dashboard.ts @@ -23,29 +23,30 @@ export const journey = new Journey({ }, ftrConfigPath: 'x-pack/performance/configs/cloud_security_posture_config.ts', esArchives: ['x-pack/performance/es_archives/kspm_findings'], - scalabilitySetup: { - warmup: [ - { - action: 'constantConcurrentUsers', - userCount: 10, - duration: '30s', - }, - { - action: 'rampConcurrentUsers', - minUsersCount: 10, - maxUsersCount: 50, - duration: '2m', - }, - ], - test: [ - { - action: 'constantConcurrentUsers', - userCount: 50, - duration: '3m', - }, - ], - maxDuration: '10m', - }, + // unskip when https://github.com/elastic/kibana-load-testing/issues/448 is fixed + // scalabilitySetup: { + // warmup: [ + // { + // action: 'constantConcurrentUsers', + // userCount: 10, + // duration: '30s', + // }, + // { + // action: 'rampConcurrentUsers', + // minUsersCount: 10, + // maxUsersCount: 50, + // duration: '2m', + // }, + // ], + // test: [ + // { + // action: 'constantConcurrentUsers', + // userCount: 50, + // duration: '3m', + // }, + // ], + // maxDuration: '10m', + // }, }).step('Go to cloud security dashboards Page', async ({ page, kbnUrl }) => { await page.goto(kbnUrl.get(`/app/security/cloud_security_posture/dashboard`)); await page.waitForSelector(subj('csp:dashboard-sections-table-header-score'));