mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
skip scalability testing for cloud_security_dashboard journey (#175786)
## Summary Temporarily commenting out `scalabilitySetup` for cloud_security_dashboard: scalability testing pipeline is failing for this journey because esArchiver can't be imported. https://github.com/elastic/kibana-load-testing/issues/448 is opened to track the required changes.
This commit is contained in:
parent
19714c780d
commit
79b87704bb
1 changed files with 24 additions and 23 deletions
|
@ -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'));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue