├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── k6_multi_scenario_executor.bat ├── k6_multi_scenario_template.js └── learnk6 ├── 01-helloworld.js ├── 02-lifetime.js ├── 03-VUsDurationChecks.js ├── 04-Thresholds.js ├── 05-Stages.js ├── 06-Scenarios.js ├── 07-ExecutorsRampingVU.js ├── 08-OpenVsClosed-Executors-Closed.js ├── 08-OpenVsClosed-Executors-Open.js ├── 09A-Groups.js ├── 09B-Tags.js └── Grafana Cloud K6 └── grafanacloudk6.js /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/K6-MultiScenario-template/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/K6-MultiScenario-template/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/K6-MultiScenario-template/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/K6-MultiScenario-template/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/K6-MultiScenario-template/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/K6-MultiScenario-template/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/K6-MultiScenario-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/K6-MultiScenario-template/HEAD/README.md -------------------------------------------------------------------------------- /k6_multi_scenario_executor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/K6-MultiScenario-template/HEAD/k6_multi_scenario_executor.bat -------------------------------------------------------------------------------- /k6_multi_scenario_template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/K6-MultiScenario-template/HEAD/k6_multi_scenario_template.js -------------------------------------------------------------------------------- /learnk6/01-helloworld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/K6-MultiScenario-template/HEAD/learnk6/01-helloworld.js -------------------------------------------------------------------------------- /learnk6/02-lifetime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/K6-MultiScenario-template/HEAD/learnk6/02-lifetime.js -------------------------------------------------------------------------------- /learnk6/03-VUsDurationChecks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/K6-MultiScenario-template/HEAD/learnk6/03-VUsDurationChecks.js -------------------------------------------------------------------------------- /learnk6/04-Thresholds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/K6-MultiScenario-template/HEAD/learnk6/04-Thresholds.js -------------------------------------------------------------------------------- /learnk6/05-Stages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/K6-MultiScenario-template/HEAD/learnk6/05-Stages.js -------------------------------------------------------------------------------- /learnk6/06-Scenarios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/K6-MultiScenario-template/HEAD/learnk6/06-Scenarios.js -------------------------------------------------------------------------------- /learnk6/07-ExecutorsRampingVU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/K6-MultiScenario-template/HEAD/learnk6/07-ExecutorsRampingVU.js -------------------------------------------------------------------------------- /learnk6/08-OpenVsClosed-Executors-Closed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/K6-MultiScenario-template/HEAD/learnk6/08-OpenVsClosed-Executors-Closed.js -------------------------------------------------------------------------------- /learnk6/08-OpenVsClosed-Executors-Open.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/K6-MultiScenario-template/HEAD/learnk6/08-OpenVsClosed-Executors-Open.js -------------------------------------------------------------------------------- /learnk6/09A-Groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/K6-MultiScenario-template/HEAD/learnk6/09A-Groups.js -------------------------------------------------------------------------------- /learnk6/09B-Tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/K6-MultiScenario-template/HEAD/learnk6/09B-Tags.js -------------------------------------------------------------------------------- /learnk6/Grafana Cloud K6/grafanacloudk6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/K6-MultiScenario-template/HEAD/learnk6/Grafana Cloud K6/grafanacloudk6.js --------------------------------------------------------------------------------