├── .husky ├── .gitignore └── pre-commit ├── .npmrc ├── scripts ├── .gitignore └── cloudfront-invalidate.sh ├── .prettierignore ├── docs ├── sources │ ├── k6 │ │ ├── next │ │ │ ├── shared │ │ │ │ ├── index.md │ │ │ │ ├── browser-module-wip.md │ │ │ │ ├── crypto │ │ │ │ │ └── supported-key-methods-formats.md │ │ │ │ ├── extension.md │ │ │ │ ├── webcrypto │ │ │ │ │ └── supported-key-methods-formats.md │ │ │ │ └── crypto-module.md │ │ │ ├── examples │ │ │ │ └── _index.md │ │ │ ├── using-k6 │ │ │ │ ├── _index.md │ │ │ │ └── test-authoring │ │ │ │ │ └── _index.md │ │ │ ├── set-up │ │ │ │ ├── _index.md │ │ │ │ └── set-up-distributed-k6 │ │ │ │ │ └── usage │ │ │ │ │ ├── _index.md │ │ │ │ │ └── reference.md │ │ │ ├── get-started │ │ │ │ └── _index.md │ │ │ ├── reference │ │ │ │ └── _index.md │ │ │ ├── javascript-api │ │ │ │ ├── k6-data │ │ │ │ │ └── _index.md │ │ │ │ ├── jslib │ │ │ │ │ └── _index.md │ │ │ │ ├── k6 │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-metrics │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-html │ │ │ │ │ └── _index.md │ │ │ │ ├── import.meta │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-http │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-browser │ │ │ │ │ └── frame │ │ │ │ │ │ ├── url.md │ │ │ │ │ │ ├── name.md │ │ │ │ │ │ └── title.md │ │ │ │ ├── k6-encoding │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-ws │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-experimental │ │ │ │ │ └── _index.md │ │ │ │ ├── init-context │ │ │ │ │ └── _index.md │ │ │ │ └── k6-crypto │ │ │ │ │ └── _index.md │ │ │ ├── using-k6-browser │ │ │ │ ├── how-to-write-browser-tests │ │ │ │ │ └── _index.md │ │ │ │ └── recommended-practices │ │ │ │ │ └── _index.md │ │ │ └── testing-guides │ │ │ │ ├── _index.md │ │ │ │ └── injecting-faults-with-xk6-disruptor │ │ │ │ └── examples │ │ │ │ └── demo-environment.md │ │ ├── v1.0.x │ │ │ ├── shared │ │ │ │ ├── index.md │ │ │ │ ├── browser-module-wip.md │ │ │ │ ├── crypto │ │ │ │ │ └── supported-key-methods-formats.md │ │ │ │ └── webcrypto │ │ │ │ │ └── supported-key-methods-formats.md │ │ │ ├── examples │ │ │ │ └── _index.md │ │ │ ├── set-up │ │ │ │ ├── _index.md │ │ │ │ └── set-up-distributed-k6 │ │ │ │ │ └── usage │ │ │ │ │ ├── _index.md │ │ │ │ │ └── reference.md │ │ │ ├── using-k6 │ │ │ │ ├── _index.md │ │ │ │ └── test-authoring │ │ │ │ │ └── _index.md │ │ │ ├── get-started │ │ │ │ └── _index.md │ │ │ ├── extensions │ │ │ │ └── explanations │ │ │ │ │ └── _index.md │ │ │ ├── reference │ │ │ │ └── _index.md │ │ │ ├── javascript-api │ │ │ │ ├── k6-data │ │ │ │ │ └── _index.md │ │ │ │ ├── jslib │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-metrics │ │ │ │ │ └── _index.md │ │ │ │ ├── k6 │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-html │ │ │ │ │ └── _index.md │ │ │ │ ├── import.meta │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-http │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-browser │ │ │ │ │ └── frame │ │ │ │ │ │ ├── url.md │ │ │ │ │ │ ├── name.md │ │ │ │ │ │ └── title.md │ │ │ │ ├── k6-encoding │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-ws │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-experimental │ │ │ │ │ └── _index.md │ │ │ │ ├── init-context │ │ │ │ │ └── _index.md │ │ │ │ └── k6-crypto │ │ │ │ │ └── _index.md │ │ │ ├── using-k6-browser │ │ │ │ └── how-to-write-browser-tests │ │ │ │ │ └── _index.md │ │ │ └── testing-guides │ │ │ │ ├── _index.md │ │ │ │ └── injecting-faults-with-xk6-disruptor │ │ │ │ └── examples │ │ │ │ └── demo-environment.md │ │ ├── v1.1.x │ │ │ ├── shared │ │ │ │ ├── index.md │ │ │ │ ├── browser-module-wip.md │ │ │ │ ├── crypto │ │ │ │ │ └── supported-key-methods-formats.md │ │ │ │ └── webcrypto │ │ │ │ │ └── supported-key-methods-formats.md │ │ │ ├── examples │ │ │ │ └── _index.md │ │ │ ├── set-up │ │ │ │ ├── _index.md │ │ │ │ └── set-up-distributed-k6 │ │ │ │ │ └── usage │ │ │ │ │ ├── _index.md │ │ │ │ │ └── reference.md │ │ │ ├── using-k6 │ │ │ │ ├── _index.md │ │ │ │ └── test-authoring │ │ │ │ │ └── _index.md │ │ │ ├── get-started │ │ │ │ └── _index.md │ │ │ ├── extensions │ │ │ │ └── explanations │ │ │ │ │ └── _index.md │ │ │ ├── reference │ │ │ │ └── _index.md │ │ │ ├── javascript-api │ │ │ │ ├── k6-data │ │ │ │ │ └── _index.md │ │ │ │ ├── jslib │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-metrics │ │ │ │ │ └── _index.md │ │ │ │ ├── k6 │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-html │ │ │ │ │ └── _index.md │ │ │ │ ├── import.meta │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-http │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-browser │ │ │ │ │ └── frame │ │ │ │ │ │ ├── url.md │ │ │ │ │ │ ├── name.md │ │ │ │ │ │ └── title.md │ │ │ │ ├── k6-encoding │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-ws │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-experimental │ │ │ │ │ └── _index.md │ │ │ │ ├── init-context │ │ │ │ │ └── _index.md │ │ │ │ └── k6-crypto │ │ │ │ │ └── _index.md │ │ │ ├── using-k6-browser │ │ │ │ └── how-to-write-browser-tests │ │ │ │ │ └── _index.md │ │ │ └── testing-guides │ │ │ │ ├── _index.md │ │ │ │ └── injecting-faults-with-xk6-disruptor │ │ │ │ └── examples │ │ │ │ └── demo-environment.md │ │ ├── v1.2.x │ │ │ ├── shared │ │ │ │ ├── index.md │ │ │ │ ├── browser-module-wip.md │ │ │ │ ├── crypto │ │ │ │ │ └── supported-key-methods-formats.md │ │ │ │ └── webcrypto │ │ │ │ │ └── supported-key-methods-formats.md │ │ │ ├── examples │ │ │ │ └── _index.md │ │ │ ├── set-up │ │ │ │ ├── _index.md │ │ │ │ └── set-up-distributed-k6 │ │ │ │ │ └── usage │ │ │ │ │ ├── _index.md │ │ │ │ │ └── reference.md │ │ │ ├── using-k6 │ │ │ │ ├── _index.md │ │ │ │ └── test-authoring │ │ │ │ │ └── _index.md │ │ │ ├── get-started │ │ │ │ └── _index.md │ │ │ ├── reference │ │ │ │ └── _index.md │ │ │ ├── javascript-api │ │ │ │ ├── k6-data │ │ │ │ │ └── _index.md │ │ │ │ ├── jslib │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-metrics │ │ │ │ │ └── _index.md │ │ │ │ ├── k6 │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-html │ │ │ │ │ └── _index.md │ │ │ │ ├── import.meta │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-http │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-browser │ │ │ │ │ └── frame │ │ │ │ │ │ ├── url.md │ │ │ │ │ │ ├── name.md │ │ │ │ │ │ └── title.md │ │ │ │ ├── k6-encoding │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-ws │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-experimental │ │ │ │ │ └── _index.md │ │ │ │ ├── init-context │ │ │ │ │ └── _index.md │ │ │ │ └── k6-crypto │ │ │ │ │ └── _index.md │ │ │ ├── using-k6-browser │ │ │ │ └── how-to-write-browser-tests │ │ │ │ │ └── _index.md │ │ │ └── testing-guides │ │ │ │ ├── _index.md │ │ │ │ └── injecting-faults-with-xk6-disruptor │ │ │ │ └── examples │ │ │ │ └── demo-environment.md │ │ ├── v1.3.x │ │ │ ├── shared │ │ │ │ ├── index.md │ │ │ │ ├── browser-module-wip.md │ │ │ │ ├── crypto │ │ │ │ │ └── supported-key-methods-formats.md │ │ │ │ └── webcrypto │ │ │ │ │ └── supported-key-methods-formats.md │ │ │ ├── examples │ │ │ │ └── _index.md │ │ │ ├── set-up │ │ │ │ ├── _index.md │ │ │ │ └── set-up-distributed-k6 │ │ │ │ │ └── usage │ │ │ │ │ ├── _index.md │ │ │ │ │ └── reference.md │ │ │ ├── using-k6 │ │ │ │ ├── _index.md │ │ │ │ └── test-authoring │ │ │ │ │ └── _index.md │ │ │ ├── get-started │ │ │ │ └── _index.md │ │ │ ├── reference │ │ │ │ └── _index.md │ │ │ ├── javascript-api │ │ │ │ ├── k6-data │ │ │ │ │ └── _index.md │ │ │ │ ├── jslib │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-metrics │ │ │ │ │ └── _index.md │ │ │ │ ├── k6 │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-html │ │ │ │ │ └── _index.md │ │ │ │ ├── import.meta │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-http │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-browser │ │ │ │ │ └── frame │ │ │ │ │ │ ├── url.md │ │ │ │ │ │ ├── name.md │ │ │ │ │ │ └── title.md │ │ │ │ ├── k6-encoding │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-ws │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-experimental │ │ │ │ │ └── _index.md │ │ │ │ ├── init-context │ │ │ │ │ └── _index.md │ │ │ │ └── k6-crypto │ │ │ │ │ └── _index.md │ │ │ ├── using-k6-browser │ │ │ │ └── how-to-write-browser-tests │ │ │ │ │ └── _index.md │ │ │ └── testing-guides │ │ │ │ ├── _index.md │ │ │ │ └── injecting-faults-with-xk6-disruptor │ │ │ │ └── examples │ │ │ │ └── demo-environment.md │ │ ├── v1.4.x │ │ │ ├── shared │ │ │ │ ├── index.md │ │ │ │ ├── browser-module-wip.md │ │ │ │ ├── crypto │ │ │ │ │ └── supported-key-methods-formats.md │ │ │ │ ├── extension.md │ │ │ │ └── webcrypto │ │ │ │ │ └── supported-key-methods-formats.md │ │ │ ├── examples │ │ │ │ └── _index.md │ │ │ ├── set-up │ │ │ │ ├── _index.md │ │ │ │ └── set-up-distributed-k6 │ │ │ │ │ └── usage │ │ │ │ │ ├── _index.md │ │ │ │ │ └── reference.md │ │ │ ├── using-k6 │ │ │ │ ├── _index.md │ │ │ │ └── test-authoring │ │ │ │ │ └── _index.md │ │ │ ├── get-started │ │ │ │ └── _index.md │ │ │ ├── reference │ │ │ │ └── _index.md │ │ │ ├── javascript-api │ │ │ │ ├── k6-data │ │ │ │ │ └── _index.md │ │ │ │ ├── jslib │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-metrics │ │ │ │ │ └── _index.md │ │ │ │ ├── k6 │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-html │ │ │ │ │ └── _index.md │ │ │ │ ├── import.meta │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-http │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-browser │ │ │ │ │ └── frame │ │ │ │ │ │ ├── url.md │ │ │ │ │ │ ├── name.md │ │ │ │ │ │ └── title.md │ │ │ │ ├── k6-encoding │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-ws │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-experimental │ │ │ │ │ └── _index.md │ │ │ │ ├── init-context │ │ │ │ │ └── _index.md │ │ │ │ └── k6-crypto │ │ │ │ │ └── _index.md │ │ │ ├── using-k6-browser │ │ │ │ └── how-to-write-browser-tests │ │ │ │ │ └── _index.md │ │ │ └── testing-guides │ │ │ │ ├── _index.md │ │ │ │ └── injecting-faults-with-xk6-disruptor │ │ │ │ └── examples │ │ │ │ └── demo-environment.md │ │ ├── v0.47.x │ │ │ ├── shared │ │ │ │ ├── index.md │ │ │ │ └── browser-module-wip.md │ │ │ ├── misc │ │ │ │ ├── _index.md │ │ │ │ └── release-notes.md │ │ │ ├── using-k6 │ │ │ │ ├── _index.md │ │ │ │ └── test-authoring │ │ │ │ │ └── _index.md │ │ │ ├── get-started │ │ │ │ └── _index.md │ │ │ ├── examples │ │ │ │ ├── _index.md │ │ │ │ ├── crawl-webpage.md │ │ │ │ ├── data-generation.md │ │ │ │ └── bundling-and-transpilation.md │ │ │ ├── extensions │ │ │ │ └── explanations │ │ │ │ │ └── _index.md │ │ │ └── testing-guides │ │ │ │ ├── _index.md │ │ │ │ └── injecting-faults-with-xk6-disruptor │ │ │ │ └── examples │ │ │ │ └── demo-environment.md │ │ ├── v0.48.x │ │ │ ├── shared │ │ │ │ ├── index.md │ │ │ │ └── browser-module-wip.md │ │ │ ├── misc │ │ │ │ ├── _index.md │ │ │ │ └── release-notes.md │ │ │ ├── using-k6 │ │ │ │ ├── _index.md │ │ │ │ └── test-authoring │ │ │ │ │ └── _index.md │ │ │ ├── get-started │ │ │ │ └── _index.md │ │ │ ├── examples │ │ │ │ ├── _index.md │ │ │ │ ├── crawl-webpage.md │ │ │ │ ├── data-generation.md │ │ │ │ └── bundling-and-transpilation.md │ │ │ ├── extensions │ │ │ │ └── explanations │ │ │ │ │ └── _index.md │ │ │ └── testing-guides │ │ │ │ ├── _index.md │ │ │ │ └── injecting-faults-with-xk6-disruptor │ │ │ │ └── examples │ │ │ │ └── demo-environment.md │ │ ├── v0.49.x │ │ │ ├── shared │ │ │ │ ├── index.md │ │ │ │ └── browser-module-wip.md │ │ │ ├── misc │ │ │ │ ├── _index.md │ │ │ │ └── release-notes.md │ │ │ ├── examples │ │ │ │ ├── _index.md │ │ │ │ ├── crawl-webpage.md │ │ │ │ ├── data-generation.md │ │ │ │ └── bundling-and-transpilation.md │ │ │ ├── using-k6 │ │ │ │ ├── _index.md │ │ │ │ └── test-authoring │ │ │ │ │ └── _index.md │ │ │ ├── get-started │ │ │ │ └── _index.md │ │ │ ├── extensions │ │ │ │ └── explanations │ │ │ │ │ └── _index.md │ │ │ └── testing-guides │ │ │ │ ├── _index.md │ │ │ │ └── injecting-faults-with-xk6-disruptor │ │ │ │ └── examples │ │ │ │ └── demo-environment.md │ │ ├── v0.50.x │ │ │ ├── shared │ │ │ │ ├── index.md │ │ │ │ └── browser-module-wip.md │ │ │ ├── misc │ │ │ │ ├── _index.md │ │ │ │ └── release-notes.md │ │ │ ├── examples │ │ │ │ ├── _index.md │ │ │ │ ├── crawl-webpage.md │ │ │ │ ├── data-generation.md │ │ │ │ └── bundling-and-transpilation.md │ │ │ ├── set-up │ │ │ │ └── _index.md │ │ │ ├── using-k6 │ │ │ │ ├── _index.md │ │ │ │ └── test-authoring │ │ │ │ │ └── _index.md │ │ │ ├── get-started │ │ │ │ └── _index.md │ │ │ ├── extensions │ │ │ │ └── explanations │ │ │ │ │ └── _index.md │ │ │ └── testing-guides │ │ │ │ ├── _index.md │ │ │ │ └── injecting-faults-with-xk6-disruptor │ │ │ │ └── examples │ │ │ │ └── demo-environment.md │ │ ├── v0.51.x │ │ │ ├── shared │ │ │ │ ├── index.md │ │ │ │ └── browser-module-wip.md │ │ │ ├── misc │ │ │ │ ├── _index.md │ │ │ │ └── release-notes.md │ │ │ ├── examples │ │ │ │ ├── _index.md │ │ │ │ ├── crawl-webpage.md │ │ │ │ ├── data-generation.md │ │ │ │ └── bundling-and-transpilation.md │ │ │ ├── set-up │ │ │ │ └── _index.md │ │ │ ├── using-k6 │ │ │ │ ├── _index.md │ │ │ │ └── test-authoring │ │ │ │ │ └── _index.md │ │ │ ├── get-started │ │ │ │ └── _index.md │ │ │ ├── extensions │ │ │ │ └── explanations │ │ │ │ │ └── _index.md │ │ │ └── testing-guides │ │ │ │ ├── _index.md │ │ │ │ └── injecting-faults-with-xk6-disruptor │ │ │ │ └── examples │ │ │ │ └── demo-environment.md │ │ ├── v0.52.x │ │ │ ├── shared │ │ │ │ ├── index.md │ │ │ │ ├── browser-module-wip.md │ │ │ │ └── webcrypto │ │ │ │ │ └── supported-key-methods-formats.md │ │ │ ├── misc │ │ │ │ └── _index.md │ │ │ ├── examples │ │ │ │ ├── _index.md │ │ │ │ ├── crawl-webpage.md │ │ │ │ ├── data-generation.md │ │ │ │ └── bundling-and-transpilation.md │ │ │ ├── set-up │ │ │ │ ├── _index.md │ │ │ │ └── set-up-distributed-k6 │ │ │ │ │ ├── usage │ │ │ │ │ ├── _index.md │ │ │ │ │ └── reference.md │ │ │ │ │ └── upgrade-k6-operator.md │ │ │ ├── using-k6 │ │ │ │ ├── _index.md │ │ │ │ └── test-authoring │ │ │ │ │ └── _index.md │ │ │ ├── get-started │ │ │ │ └── _index.md │ │ │ ├── extensions │ │ │ │ └── explanations │ │ │ │ │ └── _index.md │ │ │ ├── javascript-api │ │ │ │ ├── k6-data │ │ │ │ │ └── _index.md │ │ │ │ ├── jslib │ │ │ │ │ └── _index.md │ │ │ │ ├── k6 │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-metrics │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-html │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-http │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-browser │ │ │ │ │ └── frame │ │ │ │ │ │ ├── url.md │ │ │ │ │ │ ├── name.md │ │ │ │ │ │ └── title.md │ │ │ │ ├── k6-encoding │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-ws │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-experimental │ │ │ │ │ └── _index.md │ │ │ │ ├── init-context │ │ │ │ │ └── _index.md │ │ │ │ └── k6-crypto │ │ │ │ │ └── _index.md │ │ │ └── testing-guides │ │ │ │ ├── _index.md │ │ │ │ └── injecting-faults-with-xk6-disruptor │ │ │ │ └── examples │ │ │ │ └── demo-environment.md │ │ ├── v0.53.x │ │ │ ├── shared │ │ │ │ ├── index.md │ │ │ │ ├── browser-module-wip.md │ │ │ │ └── webcrypto │ │ │ │ │ └── supported-key-methods-formats.md │ │ │ ├── misc │ │ │ │ └── _index.md │ │ │ ├── examples │ │ │ │ └── _index.md │ │ │ ├── set-up │ │ │ │ ├── _index.md │ │ │ │ └── set-up-distributed-k6 │ │ │ │ │ ├── usage │ │ │ │ │ ├── _index.md │ │ │ │ │ └── reference.md │ │ │ │ │ └── upgrade-k6-operator.md │ │ │ ├── using-k6 │ │ │ │ ├── _index.md │ │ │ │ └── test-authoring │ │ │ │ │ └── _index.md │ │ │ ├── get-started │ │ │ │ └── _index.md │ │ │ ├── extensions │ │ │ │ └── explanations │ │ │ │ │ └── _index.md │ │ │ ├── javascript-api │ │ │ │ ├── k6-data │ │ │ │ │ └── _index.md │ │ │ │ ├── jslib │ │ │ │ │ └── _index.md │ │ │ │ ├── k6 │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-metrics │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-html │ │ │ │ │ └── _index.md │ │ │ │ ├── import.meta │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-http │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-browser │ │ │ │ │ └── frame │ │ │ │ │ │ ├── url.md │ │ │ │ │ │ ├── name.md │ │ │ │ │ │ └── title.md │ │ │ │ ├── k6-encoding │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-ws │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-experimental │ │ │ │ │ └── _index.md │ │ │ │ ├── init-context │ │ │ │ │ └── _index.md │ │ │ │ └── k6-crypto │ │ │ │ │ └── _index.md │ │ │ └── testing-guides │ │ │ │ ├── _index.md │ │ │ │ └── injecting-faults-with-xk6-disruptor │ │ │ │ └── examples │ │ │ │ └── demo-environment.md │ │ ├── v0.54.x │ │ │ ├── shared │ │ │ │ ├── index.md │ │ │ │ ├── browser-module-wip.md │ │ │ │ └── webcrypto │ │ │ │ │ └── supported-key-methods-formats.md │ │ │ ├── misc │ │ │ │ └── _index.md │ │ │ ├── examples │ │ │ │ └── _index.md │ │ │ ├── set-up │ │ │ │ ├── _index.md │ │ │ │ └── set-up-distributed-k6 │ │ │ │ │ ├── usage │ │ │ │ │ ├── _index.md │ │ │ │ │ └── reference.md │ │ │ │ │ └── upgrade-k6-operator.md │ │ │ ├── using-k6 │ │ │ │ ├── _index.md │ │ │ │ └── test-authoring │ │ │ │ │ └── _index.md │ │ │ ├── get-started │ │ │ │ └── _index.md │ │ │ ├── extensions │ │ │ │ └── explanations │ │ │ │ │ └── _index.md │ │ │ ├── javascript-api │ │ │ │ ├── k6-data │ │ │ │ │ └── _index.md │ │ │ │ ├── jslib │ │ │ │ │ └── _index.md │ │ │ │ ├── k6 │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-metrics │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-html │ │ │ │ │ └── _index.md │ │ │ │ ├── import.meta │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-http │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-browser │ │ │ │ │ └── frame │ │ │ │ │ │ ├── url.md │ │ │ │ │ │ ├── name.md │ │ │ │ │ │ └── title.md │ │ │ │ ├── k6-encoding │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-ws │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-experimental │ │ │ │ │ └── _index.md │ │ │ │ ├── init-context │ │ │ │ │ └── _index.md │ │ │ │ └── k6-crypto │ │ │ │ │ └── _index.md │ │ │ └── testing-guides │ │ │ │ ├── _index.md │ │ │ │ └── injecting-faults-with-xk6-disruptor │ │ │ │ └── examples │ │ │ │ └── demo-environment.md │ │ ├── v0.55.x │ │ │ ├── shared │ │ │ │ ├── index.md │ │ │ │ ├── browser-module-wip.md │ │ │ │ └── webcrypto │ │ │ │ │ └── supported-key-methods-formats.md │ │ │ ├── misc │ │ │ │ └── _index.md │ │ │ ├── examples │ │ │ │ └── _index.md │ │ │ ├── set-up │ │ │ │ ├── _index.md │ │ │ │ └── set-up-distributed-k6 │ │ │ │ │ ├── usage │ │ │ │ │ ├── _index.md │ │ │ │ │ └── reference.md │ │ │ │ │ └── upgrade-k6-operator.md │ │ │ ├── using-k6 │ │ │ │ ├── _index.md │ │ │ │ └── test-authoring │ │ │ │ │ └── _index.md │ │ │ ├── get-started │ │ │ │ └── _index.md │ │ │ ├── extensions │ │ │ │ └── explanations │ │ │ │ │ └── _index.md │ │ │ ├── javascript-api │ │ │ │ ├── k6-data │ │ │ │ │ └── _index.md │ │ │ │ ├── jslib │ │ │ │ │ └── _index.md │ │ │ │ ├── k6 │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-metrics │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-html │ │ │ │ │ └── _index.md │ │ │ │ ├── import.meta │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-http │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-browser │ │ │ │ │ └── frame │ │ │ │ │ │ ├── url.md │ │ │ │ │ │ ├── name.md │ │ │ │ │ │ └── title.md │ │ │ │ ├── k6-encoding │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-ws │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-experimental │ │ │ │ │ └── _index.md │ │ │ │ ├── init-context │ │ │ │ │ └── _index.md │ │ │ │ └── k6-crypto │ │ │ │ │ └── _index.md │ │ │ ├── testing-guides │ │ │ │ ├── _index.md │ │ │ │ └── injecting-faults-with-xk6-disruptor │ │ │ │ │ └── examples │ │ │ │ │ └── demo-environment.md │ │ │ └── using-k6-browser │ │ │ │ └── recommended-practices │ │ │ │ └── _index.md │ │ ├── v0.56.x │ │ │ ├── shared │ │ │ │ ├── index.md │ │ │ │ ├── browser-module-wip.md │ │ │ │ └── webcrypto │ │ │ │ │ └── supported-key-methods-formats.md │ │ │ ├── misc │ │ │ │ └── _index.md │ │ │ ├── examples │ │ │ │ └── _index.md │ │ │ ├── set-up │ │ │ │ ├── _index.md │ │ │ │ └── set-up-distributed-k6 │ │ │ │ │ ├── usage │ │ │ │ │ ├── _index.md │ │ │ │ │ └── reference.md │ │ │ │ │ └── upgrade-k6-operator.md │ │ │ ├── using-k6 │ │ │ │ ├── _index.md │ │ │ │ └── test-authoring │ │ │ │ │ └── _index.md │ │ │ ├── get-started │ │ │ │ └── _index.md │ │ │ ├── extensions │ │ │ │ └── explanations │ │ │ │ │ └── _index.md │ │ │ ├── javascript-api │ │ │ │ ├── k6-data │ │ │ │ │ └── _index.md │ │ │ │ ├── jslib │ │ │ │ │ └── _index.md │ │ │ │ ├── k6 │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-metrics │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-html │ │ │ │ │ └── _index.md │ │ │ │ ├── import.meta │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-http │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-browser │ │ │ │ │ └── frame │ │ │ │ │ │ ├── url.md │ │ │ │ │ │ ├── name.md │ │ │ │ │ │ └── title.md │ │ │ │ ├── k6-encoding │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-ws │ │ │ │ │ └── _index.md │ │ │ │ ├── k6-experimental │ │ │ │ │ └── _index.md │ │ │ │ ├── init-context │ │ │ │ │ └── _index.md │ │ │ │ └── k6-crypto │ │ │ │ │ └── _index.md │ │ │ └── testing-guides │ │ │ │ ├── _index.md │ │ │ │ └── injecting-faults-with-xk6-disruptor │ │ │ │ └── examples │ │ │ │ └── demo-environment.md │ │ └── v0.57.x │ │ │ ├── shared │ │ │ ├── index.md │ │ │ ├── browser-module-wip.md │ │ │ └── webcrypto │ │ │ │ └── supported-key-methods-formats.md │ │ │ ├── misc │ │ │ └── _index.md │ │ │ ├── examples │ │ │ └── _index.md │ │ │ ├── set-up │ │ │ ├── _index.md │ │ │ └── set-up-distributed-k6 │ │ │ │ ├── usage │ │ │ │ ├── _index.md │ │ │ │ └── reference.md │ │ │ │ └── upgrade-k6-operator.md │ │ │ ├── using-k6 │ │ │ ├── _index.md │ │ │ └── test-authoring │ │ │ │ └── _index.md │ │ │ ├── get-started │ │ │ └── _index.md │ │ │ ├── extensions │ │ │ └── explanations │ │ │ │ └── _index.md │ │ │ ├── javascript-api │ │ │ ├── k6-data │ │ │ │ └── _index.md │ │ │ ├── jslib │ │ │ │ └── _index.md │ │ │ ├── k6 │ │ │ │ └── _index.md │ │ │ ├── k6-metrics │ │ │ │ └── _index.md │ │ │ ├── k6-html │ │ │ │ └── _index.md │ │ │ ├── import.meta │ │ │ │ └── _index.md │ │ │ ├── k6-http │ │ │ │ └── _index.md │ │ │ ├── k6-browser │ │ │ │ └── frame │ │ │ │ │ ├── url.md │ │ │ │ │ ├── name.md │ │ │ │ │ └── title.md │ │ │ ├── k6-encoding │ │ │ │ └── _index.md │ │ │ ├── k6-ws │ │ │ │ └── _index.md │ │ │ ├── k6-experimental │ │ │ │ └── _index.md │ │ │ ├── init-context │ │ │ │ └── _index.md │ │ │ └── k6-crypto │ │ │ │ └── _index.md │ │ │ └── testing-guides │ │ │ ├── _index.md │ │ │ └── injecting-faults-with-xk6-disruptor │ │ │ └── examples │ │ │ └── demo-environment.md │ ├── k6-studio │ │ └── set-up │ │ │ └── _index.md │ └── .prettierrc └── Makefile ├── .huskyrc ├── .prettierrc ├── vale └── styles │ ├── config │ ├── vocabularies │ │ └── Grafana │ │ │ └── accept.txt │ ├── dictionaries │ │ ├── en_US-places.dic │ │ ├── en_US-places.wordlist │ │ ├── en_US-places.aff │ │ └── en_US-grafana.jsonnet │ └── scripts │ │ ├── go.mod │ │ └── tengo.go │ ├── Grafana │ ├── RepeatedWords.yml │ ├── DatadogProxy.yml │ ├── GoogleSemicolons.yml │ ├── GoogleOxfordComma.yml │ ├── Wish.yml │ ├── GooglePeriods.yml │ ├── ReadabilityLIX.yml │ ├── ReadabilitySMOG.yml │ ├── EndToEnd.yml │ ├── GoogleEllipses.yml │ ├── ReadabilityGunningFog.yml │ ├── Please.yml │ ├── AllowsTo.yml │ ├── GoogleRanges.yml │ ├── Latin.yml │ ├── GoogleGender.yml │ ├── ReadabilityAutomatedReadability.yml │ ├── ReadabilityColemanLiau.yml │ ├── DocumentationTeam.yml │ ├── GoogleAMPM.yml │ ├── GoogleSpacing.yml │ ├── ReadabilityFleschKincaid.yml │ ├── GoogleSlang.yml │ ├── GoogleSpelling.yml │ ├── React.yml │ ├── Exclamation.yml │ ├── OAuth.yml │ ├── ReadabilityFleschReadingEase.yml │ ├── GoogleEmDash.yml │ ├── Admin.yml │ ├── GoogleEnDash.yml │ ├── MetaMonitoring.yml │ ├── Parentheses.yml │ ├── ApacheProjectNames.yml │ ├── GoogleWill.yml │ ├── PrometheusExporters.yml │ ├── GoogleProductNames.yml │ ├── Ordinal.yml │ ├── GoogleLyHyphens.yml │ ├── GoogleOptionalPlurals.yml │ ├── SelfManaged.yml │ ├── Archives.yml │ ├── DialogBox.yml │ ├── AltText.yml │ ├── GoogleFirstPerson.yml │ ├── Relref.yml │ ├── README.yml │ ├── DropDown.yml │ ├── AmazonCloudWatch.yml │ ├── GoogleHeadingPunctuation.yml │ ├── Paragraphs.yml │ ├── CHANGELOG.yml │ ├── Quickstart.yml │ ├── AndOr.yml │ ├── ReferTo.yml │ ├── CommandLinePrompts.yml │ └── GoogleDateFormat.yml │ └── .vale-config │ └── 1-Hugo.ini ├── .lintstagedrc ├── .github ├── zizmor.yml └── prompts │ ├── copy-edit-grafana.prompt.md │ └── copy-edit-google.prompt.md ├── linkinator.config.json ├── .vale.ini └── .eslintignore /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .cache/ 2 | public/ 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /docs/sources/k6/next/shared/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- 4 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/shared/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- 4 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/shared/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- 4 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/shared/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- 4 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/shared/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- 4 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/shared/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- 4 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.47.x/shared/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- 4 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.48.x/shared/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- 4 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.49.x/shared/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- 4 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.50.x/shared/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- 4 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.51.x/shared/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- 4 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/shared/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- 4 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/shared/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- 4 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/shared/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- 4 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/shared/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- 4 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/shared/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- 4 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/shared/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- 4 | -------------------------------------------------------------------------------- /.huskyrc: -------------------------------------------------------------------------------- 1 | { 2 | "hooks": { 3 | "pre-commit": "lint-staged" 4 | } 5 | } -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "trailingComma": "all" 4 | } 5 | -------------------------------------------------------------------------------- /vale/styles/config/vocabularies/Grafana/accept.txt: -------------------------------------------------------------------------------- 1 | Largest Contentful Paint 2 | -------------------------------------------------------------------------------- /vale/styles/config/dictionaries/en_US-places.dic: -------------------------------------------------------------------------------- 1 | 2 2 | Ashburn po:noun 3 | Dublin po:noun 4 | -------------------------------------------------------------------------------- /vale/styles/config/dictionaries/en_US-places.wordlist: -------------------------------------------------------------------------------- 1 | Ashburn po:noun 2 | Dublin po:noun 3 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx --no-install lint-staged --concurrent false -------------------------------------------------------------------------------- /vale/styles/Grafana/RepeatedWords.yml: -------------------------------------------------------------------------------- 1 | extends: repetition 2 | message: "'%s' is repeated" 3 | level: error 4 | alpha: true 5 | tokens: 6 | - '[^\s]+' 7 | -------------------------------------------------------------------------------- /vale/styles/config/dictionaries/en_US-places.aff: -------------------------------------------------------------------------------- 1 | SET UTF-8 2 | TRY esianrtolcdugmphbyfvkwzESIANRTOLCDUGMPHBYFVKWZ' 3 | ICONV 1 4 | ICONV ’ ' 5 | NOSUGGEST ! 6 | -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- 1 | { 2 | "docs/sources/**/*.md": [ 3 | "prettier --parser markdown --write", 4 | "eslint -c ./docs/sources/.eslintrc.js --fix" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.47.x/misc/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 12 3 | title: Misc 4 | --- 5 | 6 | # Misc 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.48.x/misc/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 12 3 | title: Misc 4 | --- 5 | 6 | # Misc 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.49.x/misc/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 12 3 | title: Misc 4 | --- 5 | 6 | # Misc 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.50.x/misc/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 900 3 | title: Misc 4 | --- 5 | 6 | # Misc 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.51.x/misc/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 900 3 | title: Misc 4 | --- 5 | 6 | # Misc 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/misc/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 900 3 | title: Misc 4 | --- 5 | 6 | # Misc 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/misc/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 900 3 | title: Misc 4 | --- 5 | 6 | # Misc 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/misc/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 900 3 | title: Misc 4 | --- 5 | 6 | # Misc 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/misc/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 900 3 | title: Misc 4 | --- 5 | 6 | # Misc 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/misc/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 900 3 | title: Misc 4 | --- 5 | 6 | # Misc 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/misc/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 900 3 | title: Misc 4 | --- 5 | 6 | # Misc 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/next/examples/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Examples 3 | weight: 800 4 | --- 5 | 6 | # Examples 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/next/using-k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 200 3 | title: Using k6 4 | --- 5 | 6 | # Using k6 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/next/set-up/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 150 3 | title: Set up 4 | --- 5 | 6 | # Set up 7 | 8 | 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.47.x/using-k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 02 3 | title: Using k6 4 | --- 5 | 6 | # Using k6 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.48.x/using-k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 02 3 | title: Using k6 4 | --- 5 | 6 | # Using k6 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.49.x/examples/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Examples 3 | weight: 11 4 | --- 5 | 6 | # Examples 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.49.x/using-k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 02 3 | title: Using k6 4 | --- 5 | 6 | # Using k6 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.50.x/examples/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Examples 3 | weight: 800 4 | --- 5 | 6 | # Examples 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.50.x/set-up/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 100 3 | title: Set up 4 | --- 5 | 6 | # Set up 7 | 8 | 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.50.x/using-k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 200 3 | title: Using k6 4 | --- 5 | 6 | # Using k6 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.51.x/examples/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Examples 3 | weight: 800 4 | --- 5 | 6 | # Examples 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.51.x/set-up/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 100 3 | title: Set up 4 | --- 5 | 6 | # Set up 7 | 8 | 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.51.x/using-k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 200 3 | title: Using k6 4 | --- 5 | 6 | # Using k6 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/examples/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Examples 3 | weight: 800 4 | --- 5 | 6 | # Examples 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/set-up/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 175 3 | title: Set up 4 | --- 5 | 6 | # Set up 7 | 8 | 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/using-k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 200 3 | title: Using k6 4 | --- 5 | 6 | # Using k6 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/examples/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Examples 3 | weight: 800 4 | --- 5 | 6 | # Examples 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/set-up/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 150 3 | title: Set up 4 | --- 5 | 6 | # Set up 7 | 8 | 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/using-k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 200 3 | title: Using k6 4 | --- 5 | 6 | # Using k6 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/examples/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Examples 3 | weight: 800 4 | --- 5 | 6 | # Examples 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/set-up/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 150 3 | title: Set up 4 | --- 5 | 6 | # Set up 7 | 8 | 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/using-k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 200 3 | title: Using k6 4 | --- 5 | 6 | # Using k6 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/examples/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Examples 3 | weight: 800 4 | --- 5 | 6 | # Examples 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/set-up/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 150 3 | title: Set up 4 | --- 5 | 6 | # Set up 7 | 8 | 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/using-k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 200 3 | title: Using k6 4 | --- 5 | 6 | # Using k6 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/examples/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Examples 3 | weight: 800 4 | --- 5 | 6 | # Examples 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/set-up/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 150 3 | title: Set up 4 | --- 5 | 6 | # Set up 7 | 8 | 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/using-k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 200 3 | title: Using k6 4 | --- 5 | 6 | # Using k6 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/examples/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Examples 3 | weight: 800 4 | --- 5 | 6 | # Examples 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/set-up/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 150 3 | title: Set up 4 | --- 5 | 6 | # Set up 7 | 8 | 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/using-k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 200 3 | title: Using k6 4 | --- 5 | 6 | # Using k6 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/examples/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Examples 3 | weight: 800 4 | --- 5 | 6 | # Examples 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/set-up/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 150 3 | title: Set up 4 | --- 5 | 6 | # Set up 7 | 8 | 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/using-k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 200 3 | title: Using k6 4 | --- 5 | 6 | # Using k6 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/examples/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Examples 3 | weight: 800 4 | --- 5 | 6 | # Examples 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/set-up/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 150 3 | title: Set up 4 | --- 5 | 6 | # Set up 7 | 8 | 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/using-k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 200 3 | title: Using k6 4 | --- 5 | 6 | # Using k6 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/examples/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Examples 3 | weight: 800 4 | --- 5 | 6 | # Examples 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/set-up/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 150 3 | title: Set up 4 | --- 5 | 6 | # Set up 7 | 8 | 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/using-k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 200 3 | title: Using k6 4 | --- 5 | 6 | # Using k6 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/examples/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Examples 3 | weight: 800 4 | --- 5 | 6 | # Examples 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/set-up/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 150 3 | title: Set up 4 | --- 5 | 6 | # Set up 7 | 8 | 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/using-k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 200 3 | title: Using k6 4 | --- 5 | 6 | # Using k6 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/examples/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Examples 3 | weight: 800 4 | --- 5 | 6 | # Examples 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/set-up/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 150 3 | title: Set up 4 | --- 5 | 6 | # Set up 7 | 8 | 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/using-k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 200 3 | title: Using k6 4 | --- 5 | 6 | # Using k6 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/next/get-started/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 175 3 | title: Get started 4 | --- 5 | 6 | # Get started 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.47.x/get-started/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 01 3 | title: Get started 4 | --- 5 | 6 | # Get started 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.48.x/get-started/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 01 3 | title: Get started 4 | --- 5 | 6 | # Get started 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.49.x/get-started/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 01 3 | title: Get started 4 | --- 5 | 6 | # Get started 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.50.x/get-started/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 01 3 | title: Get started 4 | --- 5 | 6 | # Get started 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.51.x/get-started/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 01 3 | title: Get started 4 | --- 5 | 6 | # Get started 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/get-started/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 150 3 | title: Get started 4 | --- 5 | 6 | # Get started 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/get-started/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 175 3 | title: Get started 4 | --- 5 | 6 | # Get started 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/get-started/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 175 3 | title: Get started 4 | --- 5 | 6 | # Get started 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/get-started/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 175 3 | title: Get started 4 | --- 5 | 6 | # Get started 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/get-started/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 175 3 | title: Get started 4 | --- 5 | 6 | # Get started 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/get-started/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 175 3 | title: Get started 4 | --- 5 | 6 | # Get started 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/get-started/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 175 3 | title: Get started 4 | --- 5 | 6 | # Get started 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/get-started/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 175 3 | title: Get started 4 | --- 5 | 6 | # Get started 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/get-started/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 175 3 | title: Get started 4 | --- 5 | 6 | # Get started 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/get-started/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 175 3 | title: Get started 4 | --- 5 | 6 | # Get started 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/get-started/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 175 3 | title: Get started 4 | --- 5 | 6 | # Get started 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.47.x/examples/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Examples 3 | weight: 11 4 | noindex: true 5 | --- 6 | 7 | # Examples 8 | 9 | 10 | 11 | {{< section >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.47.x/extensions/explanations/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Explanations 3 | weight: 05 4 | --- 5 | 6 | # Explanations 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.48.x/examples/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Examples 3 | weight: 11 4 | noindex: true 5 | --- 6 | 7 | # Examples 8 | 9 | 10 | 11 | {{< section >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.48.x/extensions/explanations/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Explanations 3 | weight: 05 4 | --- 5 | 6 | # Explanations 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.49.x/extensions/explanations/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Explanations 3 | weight: 05 4 | --- 5 | 6 | # Explanations 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.50.x/extensions/explanations/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Explanations 3 | weight: 05 4 | --- 5 | 6 | # Explanations 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.51.x/extensions/explanations/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Explanations 3 | weight: 05 4 | --- 5 | 6 | # Explanations 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/extensions/explanations/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Explanations 3 | weight: 05 4 | --- 5 | 6 | # Explanations 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/extensions/explanations/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Explanations 3 | weight: 05 4 | --- 5 | 6 | # Explanations 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/extensions/explanations/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Explanations 3 | weight: 05 4 | --- 5 | 6 | # Explanations 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/extensions/explanations/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Explanations 3 | weight: 05 4 | --- 5 | 6 | # Explanations 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/extensions/explanations/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Explanations 3 | weight: 05 4 | --- 5 | 6 | # Explanations 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/extensions/explanations/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Explanations 3 | weight: 05 4 | --- 5 | 6 | # Explanations 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/extensions/explanations/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Explanations 3 | weight: 05 4 | --- 5 | 6 | # Explanations 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/extensions/explanations/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Explanations 3 | weight: 05 4 | --- 5 | 6 | # Explanations 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/next/using-k6/test-authoring/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Test authoring 3 | weight: 1700 4 | --- 5 | 6 | # Test authoring 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.47.x/using-k6/test-authoring/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Test authoring 3 | weight: 14 4 | --- 5 | 6 | # Test authoring 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.48.x/using-k6/test-authoring/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Test authoring 3 | weight: 14 4 | --- 5 | 6 | # Test authoring 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.49.x/using-k6/test-authoring/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Test authoring 3 | weight: 14 4 | --- 5 | 6 | # Test authoring 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.50.x/using-k6/test-authoring/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Test authoring 3 | weight: 14 4 | --- 5 | 6 | # Test authoring 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.51.x/using-k6/test-authoring/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Test authoring 3 | weight: 14 4 | --- 5 | 6 | # Test authoring 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/using-k6/test-authoring/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Test authoring 3 | weight: 14 4 | --- 5 | 6 | # Test authoring 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/using-k6/test-authoring/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Test authoring 3 | weight: 14 4 | --- 5 | 6 | # Test authoring 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/using-k6/test-authoring/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Test authoring 3 | weight: 14 4 | --- 5 | 6 | # Test authoring 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/using-k6/test-authoring/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Test authoring 3 | weight: 14 4 | --- 5 | 6 | # Test authoring 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/using-k6/test-authoring/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Test authoring 3 | weight: 14 4 | --- 5 | 6 | # Test authoring 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/using-k6/test-authoring/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Test authoring 3 | weight: 14 4 | --- 5 | 6 | # Test authoring 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/using-k6/test-authoring/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Test authoring 3 | weight: 14 4 | --- 5 | 6 | # Test authoring 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/using-k6/test-authoring/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Test authoring 3 | weight: 14 4 | --- 5 | 6 | # Test authoring 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/using-k6/test-authoring/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Test authoring 3 | weight: 1700 4 | --- 5 | 6 | # Test authoring 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/using-k6/test-authoring/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Test authoring 3 | weight: 1700 4 | --- 5 | 6 | # Test authoring 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/using-k6/test-authoring/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Test authoring 3 | weight: 1700 4 | --- 5 | 6 | # Test authoring 7 | 8 | 9 | 10 | {{< section >}} 11 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- 1 | .ONESHELL: 2 | .DELETE_ON_ERROR: 3 | export SHELL := bash 4 | export SHELLOPTS := pipefail:errexit 5 | MAKEFLAGS += --warn-undefined-variables 6 | MAKEFLAGS += --no-builtin-rule 7 | 8 | include docs.mk 9 | -------------------------------------------------------------------------------- /docs/sources/k6/next/set-up/set-up-distributed-k6/usage/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 300 3 | title: Usage 4 | --- 5 | 6 | # Usage 7 | 8 | This section includes the following topics: 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/set-up/set-up-distributed-k6/usage/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 300 3 | title: Usage 4 | --- 5 | 6 | # Usage 7 | 8 | This section includes the following topics: 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/set-up/set-up-distributed-k6/usage/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 300 3 | title: Usage 4 | --- 5 | 6 | # Usage 7 | 8 | This section includes the following topics: 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/set-up/set-up-distributed-k6/usage/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 300 3 | title: Usage 4 | --- 5 | 6 | # Usage 7 | 8 | This section includes the following topics: 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/set-up/set-up-distributed-k6/usage/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 300 3 | title: Usage 4 | --- 5 | 6 | # Usage 7 | 8 | This section includes the following topics: 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/set-up/set-up-distributed-k6/usage/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 300 3 | title: Usage 4 | --- 5 | 6 | # Usage 7 | 8 | This section includes the following topics: 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/set-up/set-up-distributed-k6/usage/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 300 3 | title: Usage 4 | --- 5 | 6 | # Usage 7 | 8 | This section includes the following topics: 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/set-up/set-up-distributed-k6/usage/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 300 3 | title: Usage 4 | --- 5 | 6 | # Usage 7 | 8 | This section includes the following topics: 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/set-up/set-up-distributed-k6/usage/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 300 3 | title: Usage 4 | --- 5 | 6 | # Usage 7 | 8 | This section includes the following topics: 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/set-up/set-up-distributed-k6/usage/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 300 3 | title: Usage 4 | --- 5 | 6 | # Usage 7 | 8 | This section includes the following topics: 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/set-up/set-up-distributed-k6/usage/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 300 3 | title: Usage 4 | --- 5 | 6 | # Usage 7 | 8 | This section includes the following topics: 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/set-up/set-up-distributed-k6/usage/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 300 3 | title: Usage 4 | --- 5 | 6 | # Usage 7 | 8 | This section includes the following topics: 9 | 10 | {{< section depth=2 >}} 11 | -------------------------------------------------------------------------------- /docs/sources/k6/next/reference/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | aliases: 3 | - ./misc # docs/k6//misc 4 | weight: 900 5 | title: Reference 6 | --- 7 | 8 | # Reference 9 | 10 | 11 | 12 | {{< section >}} 13 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/set-up/set-up-distributed-k6/upgrade-k6-operator.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 200 3 | title: Upgrade k6 Operator 4 | _build: 5 | list: false 6 | --- 7 | 8 | # Upgrade k6 Operator 9 | 10 | 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/set-up/set-up-distributed-k6/upgrade-k6-operator.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 200 3 | title: Upgrade k6 Operator 4 | _build: 5 | list: false 6 | --- 7 | 8 | # Upgrade k6 Operator 9 | 10 | 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/set-up/set-up-distributed-k6/upgrade-k6-operator.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 200 3 | title: Upgrade k6 Operator 4 | _build: 5 | list: false 6 | --- 7 | 8 | # Upgrade k6 Operator 9 | 10 | 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/set-up/set-up-distributed-k6/upgrade-k6-operator.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 200 3 | title: Upgrade k6 Operator 4 | _build: 5 | list: false 6 | --- 7 | 8 | # Upgrade k6 Operator 9 | 10 | 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/set-up/set-up-distributed-k6/upgrade-k6-operator.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 200 3 | title: Upgrade k6 Operator 4 | _build: 5 | list: false 6 | --- 7 | 8 | # Upgrade k6 Operator 9 | 10 | 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/set-up/set-up-distributed-k6/upgrade-k6-operator.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 200 3 | title: Upgrade k6 Operator 4 | _build: 5 | list: false 6 | --- 7 | 8 | # Upgrade k6 Operator 9 | 10 | 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/reference/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | aliases: 3 | - ./misc # docs/k6//misc 4 | weight: 900 5 | title: Reference 6 | --- 7 | 8 | # Reference 9 | 10 | 11 | 12 | {{< section >}} 13 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/reference/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | aliases: 3 | - ./misc # docs/k6//misc 4 | weight: 900 5 | title: Reference 6 | --- 7 | 8 | # Reference 9 | 10 | 11 | 12 | {{< section >}} 13 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/reference/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | aliases: 3 | - ./misc # docs/k6//misc 4 | weight: 900 5 | title: Reference 6 | --- 7 | 8 | # Reference 9 | 10 | 11 | 12 | {{< section >}} 13 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/reference/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | aliases: 3 | - ./misc # docs/k6//misc 4 | weight: 900 5 | title: Reference 6 | --- 7 | 8 | # Reference 9 | 10 | 11 | 12 | {{< section >}} 13 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/reference/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | aliases: 3 | - ./misc # docs/k6//misc 4 | weight: 900 5 | title: Reference 6 | --- 7 | 8 | # Reference 9 | 10 | 11 | 12 | {{< section >}} 13 | -------------------------------------------------------------------------------- /vale/styles/Grafana/DatadogProxy.yml: -------------------------------------------------------------------------------- 1 | extends: substitution 2 | message: Use '%s' instead of '%s'. 3 | level: warning 4 | action: 5 | name: replace 6 | swap: 7 | "[tT]he [Dd]atadog proxy": Datadog proxy 8 | Datadog Proxy: Datadog proxy 9 | -------------------------------------------------------------------------------- /docs/sources/k6/next/javascript-api/k6-data/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/data' 3 | description: 'k6 data API' 4 | weight: 04 5 | --- 6 | 7 | # k6/data 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-data.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/javascript-api/k6-data/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/data' 3 | description: 'k6 data API' 4 | weight: 04 5 | --- 6 | 7 | # k6/data 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-data.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/javascript-api/k6-data/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/data' 3 | description: 'k6 data API' 4 | weight: 04 5 | --- 6 | 7 | # k6/data 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-data.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/javascript-api/k6-data/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/data' 3 | description: 'k6 data API' 4 | weight: 04 5 | --- 6 | 7 | # k6/data 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-data.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/javascript-api/k6-data/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/data' 3 | description: 'k6 data API' 4 | weight: 04 5 | --- 6 | 7 | # k6/data 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-data.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/javascript-api/k6-data/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/data' 3 | description: 'k6 data API' 4 | weight: 04 5 | --- 6 | 7 | # k6/data 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-data.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/javascript-api/k6-data/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/data' 3 | description: 'k6 data API' 4 | weight: 04 5 | --- 6 | 7 | # k6/data 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-data.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/javascript-api/k6-data/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/data' 3 | description: 'k6 data API' 4 | weight: 04 5 | --- 6 | 7 | # k6/data 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-data.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/javascript-api/k6-data/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/data' 3 | description: 'k6 data API' 4 | weight: 04 5 | --- 6 | 7 | # k6/data 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-data.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/javascript-api/k6-data/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/data' 3 | description: 'k6 data API' 4 | weight: 04 5 | --- 6 | 7 | # k6/data 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-data.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/javascript-api/k6-data/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/data' 3 | description: 'k6 data API' 4 | weight: 04 5 | --- 6 | 7 | # k6/data 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-data.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/javascript-api/k6-data/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/data' 3 | description: 'k6 data API' 4 | weight: 04 5 | --- 6 | 7 | # k6/data 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-data.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/next/using-k6-browser/how-to-write-browser-tests/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to write browser tests 3 | description: 'Learn how to write k6 browser tests.' 4 | weight: 300 5 | --- 6 | 7 | # How to write browser tests 8 | 9 | {{< section >}} 10 | -------------------------------------------------------------------------------- /vale/styles/Grafana/GoogleSemicolons.yml: -------------------------------------------------------------------------------- 1 | "extends": "existence" 2 | "level": "suggestion" 3 | "link": "https://developers.google.com/style/semicolons" 4 | "message": "Use semicolons judiciously." 5 | "nonword": true 6 | "scope": "sentence" 7 | "tokens": 8 | - ";" 9 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/using-k6-browser/how-to-write-browser-tests/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to write browser tests 3 | description: 'Learn how to write k6 browser tests.' 4 | weight: 300 5 | --- 6 | 7 | # How to write browser tests 8 | 9 | {{< section >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/using-k6-browser/how-to-write-browser-tests/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to write browser tests 3 | description: 'Learn how to write k6 browser tests.' 4 | weight: 300 5 | --- 6 | 7 | # How to write browser tests 8 | 9 | {{< section >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/using-k6-browser/how-to-write-browser-tests/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to write browser tests 3 | description: 'Learn how to write k6 browser tests.' 4 | weight: 300 5 | --- 6 | 7 | # How to write browser tests 8 | 9 | {{< section >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/using-k6-browser/how-to-write-browser-tests/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to write browser tests 3 | description: 'Learn how to write k6 browser tests.' 4 | weight: 300 5 | --- 6 | 7 | # How to write browser tests 8 | 9 | {{< section >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/using-k6-browser/how-to-write-browser-tests/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to write browser tests 3 | description: 'Learn how to write k6 browser tests.' 4 | weight: 300 5 | --- 6 | 7 | # How to write browser tests 8 | 9 | {{< section >}} 10 | -------------------------------------------------------------------------------- /.github/zizmor.yml: -------------------------------------------------------------------------------- 1 | # This is also used as the default configuration for the Zizmor reusable 2 | # workflow. 3 | 4 | rules: 5 | unpinned-uses: 6 | config: 7 | policies: 8 | actions/*: any # trust GitHub 9 | grafana/*: any # trust Grafana 10 | -------------------------------------------------------------------------------- /docs/sources/k6/next/javascript-api/jslib/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'jslib' 3 | description: 'External JavaScript libraries for k6' 4 | weight: 15 5 | --- 6 | 7 | # jslib 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/jslib.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/next/javascript-api/k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6' 3 | description: 'The k6 module contains k6-specific functionality.' 4 | weight: 02 5 | --- 6 | 7 | # k6 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/javascript-api/jslib/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'jslib' 3 | description: 'External JavaScript libraries for k6' 4 | weight: 15 5 | --- 6 | 7 | # jslib 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/jslib.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/javascript-api/jslib/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'jslib' 3 | description: 'External JavaScript libraries for k6' 4 | weight: 15 5 | --- 6 | 7 | # jslib 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/jslib.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/javascript-api/jslib/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'jslib' 3 | description: 'External JavaScript libraries for k6' 4 | weight: 15 5 | --- 6 | 7 | # jslib 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/jslib.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/javascript-api/jslib/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'jslib' 3 | description: 'External JavaScript libraries for k6' 4 | weight: 15 5 | --- 6 | 7 | # jslib 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/jslib.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/javascript-api/jslib/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'jslib' 3 | description: 'External JavaScript libraries for k6' 4 | weight: 15 5 | --- 6 | 7 | # jslib 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/jslib.md" version="" >}} 10 | -------------------------------------------------------------------------------- /vale/styles/Grafana/GoogleOxfordComma.yml: -------------------------------------------------------------------------------- 1 | "extends": "existence" 2 | "level": "suggestion" 3 | "link": "https://developers.google.com/style/commas" 4 | "message": "Use the Oxford comma in '%s'." 5 | "scope": "sentence" 6 | "tokens": 7 | - "(?:[^,]+,){1,}\\s\\w+\\s(?:and|or)" 8 | -------------------------------------------------------------------------------- /vale/styles/Grafana/Wish.yml: -------------------------------------------------------------------------------- 1 | extends: substitution 2 | level: warning 3 | link: https://developers.google.com/style/word-list#wish 4 | message: Use '%s' instead of '%s'. 5 | 6 | ignorecase: false 7 | 8 | action: 9 | name: replace 10 | swap: 11 | wish: need|want 12 | -------------------------------------------------------------------------------- /docs/sources/k6/next/javascript-api/k6-metrics/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/metrics' 3 | description: 'k6 Custom Metrics API' 4 | weight: 10 5 | --- 6 | 7 | # k6/metrics 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-metrics.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/next/set-up/set-up-distributed-k6/usage/reference.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 500 3 | title: Reference 4 | _build: 5 | list: false 6 | --- 7 | 8 | # Reference 9 | 10 | 11 | 12 | {{< section depth=2 >}} 13 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/javascript-api/jslib/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'jslib' 3 | description: 'External JavaScript libraries for k6' 4 | weight: 15 5 | --- 6 | 7 | # jslib 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/jslib.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/javascript-api/k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6' 3 | description: 'The k6 module contains k6-specific functionality.' 4 | weight: 02 5 | --- 6 | 7 | # k6 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/javascript-api/jslib/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'jslib' 3 | description: 'External JavaScript libraries for k6' 4 | weight: 15 5 | --- 6 | 7 | # jslib 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/jslib.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/javascript-api/k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6' 3 | description: 'The k6 module contains k6-specific functionality.' 4 | weight: 02 5 | --- 6 | 7 | # k6 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/javascript-api/jslib/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'jslib' 3 | description: 'External JavaScript libraries for k6' 4 | weight: 15 5 | --- 6 | 7 | # jslib 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/jslib.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/javascript-api/k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6' 3 | description: 'The k6 module contains k6-specific functionality.' 4 | weight: 02 5 | --- 6 | 7 | # k6 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/javascript-api/jslib/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'jslib' 3 | description: 'External JavaScript libraries for k6' 4 | weight: 15 5 | --- 6 | 7 | # jslib 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/jslib.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/javascript-api/k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6' 3 | description: 'The k6 module contains k6-specific functionality.' 4 | weight: 02 5 | --- 6 | 7 | # k6 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/javascript-api/jslib/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'jslib' 3 | description: 'External JavaScript libraries for k6' 4 | weight: 15 5 | --- 6 | 7 | # jslib 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/jslib.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/javascript-api/k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6' 3 | description: 'The k6 module contains k6-specific functionality.' 4 | weight: 02 5 | --- 6 | 7 | # k6 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/javascript-api/jslib/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'jslib' 3 | description: 'External JavaScript libraries for k6' 4 | weight: 15 5 | --- 6 | 7 | # jslib 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/jslib.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/javascript-api/k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6' 3 | description: 'The k6 module contains k6-specific functionality.' 4 | weight: 02 5 | --- 6 | 7 | # k6 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/javascript-api/k6-metrics/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/metrics' 3 | description: 'k6 Custom Metrics API' 4 | weight: 10 5 | --- 6 | 7 | # k6/metrics 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-metrics.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/javascript-api/k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6' 3 | description: 'The k6 module contains k6-specific functionality.' 4 | weight: 02 5 | --- 6 | 7 | # k6 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/set-up/set-up-distributed-k6/usage/reference.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 500 3 | title: Reference 4 | _build: 5 | list: false 6 | --- 7 | 8 | # Reference 9 | 10 | 11 | 12 | {{< section depth=2 >}} 13 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/javascript-api/k6-metrics/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/metrics' 3 | description: 'k6 Custom Metrics API' 4 | weight: 10 5 | --- 6 | 7 | # k6/metrics 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-metrics.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/javascript-api/k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6' 3 | description: 'The k6 module contains k6-specific functionality.' 4 | weight: 02 5 | --- 6 | 7 | # k6 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/set-up/set-up-distributed-k6/usage/reference.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 500 3 | title: Reference 4 | _build: 5 | list: false 6 | --- 7 | 8 | # Reference 9 | 10 | 11 | 12 | {{< section depth=2 >}} 13 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/javascript-api/k6-metrics/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/metrics' 3 | description: 'k6 Custom Metrics API' 4 | weight: 10 5 | --- 6 | 7 | # k6/metrics 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-metrics.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/javascript-api/k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6' 3 | description: 'The k6 module contains k6-specific functionality.' 4 | weight: 02 5 | --- 6 | 7 | # k6 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/set-up/set-up-distributed-k6/usage/reference.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 500 3 | title: Reference 4 | _build: 5 | list: false 6 | --- 7 | 8 | # Reference 9 | 10 | 11 | 12 | {{< section depth=2 >}} 13 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/javascript-api/k6-metrics/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/metrics' 3 | description: 'k6 Custom Metrics API' 4 | weight: 10 5 | --- 6 | 7 | # k6/metrics 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-metrics.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/javascript-api/k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6' 3 | description: 'The k6 module contains k6-specific functionality.' 4 | weight: 02 5 | --- 6 | 7 | # k6 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/set-up/set-up-distributed-k6/usage/reference.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 500 3 | title: Reference 4 | _build: 5 | list: false 6 | --- 7 | 8 | # Reference 9 | 10 | 11 | 12 | {{< section depth=2 >}} 13 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/javascript-api/k6-metrics/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/metrics' 3 | description: 'k6 Custom Metrics API' 4 | weight: 10 5 | --- 6 | 7 | # k6/metrics 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-metrics.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/javascript-api/k6/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6' 3 | description: 'The k6 module contains k6-specific functionality.' 4 | weight: 02 5 | --- 6 | 7 | # k6 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/set-up/set-up-distributed-k6/usage/reference.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 500 3 | title: Reference 4 | _build: 5 | list: false 6 | --- 7 | 8 | # Reference 9 | 10 | 11 | 12 | {{< section depth=2 >}} 13 | -------------------------------------------------------------------------------- /vale/styles/config/dictionaries/en_US-grafana.jsonnet: -------------------------------------------------------------------------------- 1 | local defs = (import '../../../../dictionary.libsonnet').words; 2 | local entries = std.map(function(word) '%s/%s po:%s' % [word.word, word.affixes, word.po], defs); 3 | '%d\n%s' % [std.length(entries), std.join('\n', entries)] 4 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/javascript-api/k6-metrics/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/metrics' 3 | description: 'k6 Custom Metrics API' 4 | weight: 10 5 | --- 6 | 7 | # k6/metrics 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-metrics.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/set-up/set-up-distributed-k6/usage/reference.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 500 3 | title: Reference 4 | _build: 5 | list: false 6 | --- 7 | 8 | # Reference 9 | 10 | 11 | 12 | {{< section depth=2 >}} 13 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/javascript-api/k6-metrics/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/metrics' 3 | description: 'k6 Custom Metrics API' 4 | weight: 10 5 | --- 6 | 7 | # k6/metrics 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-metrics.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/set-up/set-up-distributed-k6/usage/reference.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 500 3 | title: Reference 4 | _build: 5 | list: false 6 | --- 7 | 8 | # Reference 9 | 10 | 11 | 12 | {{< section depth=2 >}} 13 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/javascript-api/k6-metrics/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/metrics' 3 | description: 'k6 Custom Metrics API' 4 | weight: 10 5 | --- 6 | 7 | # k6/metrics 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-metrics.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/set-up/set-up-distributed-k6/usage/reference.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 500 3 | title: Reference 4 | _build: 5 | list: false 6 | --- 7 | 8 | # Reference 9 | 10 | 11 | 12 | {{< section depth=2 >}} 13 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/javascript-api/k6-metrics/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/metrics' 3 | description: 'k6 Custom Metrics API' 4 | weight: 10 5 | --- 6 | 7 | # k6/metrics 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-metrics.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/set-up/set-up-distributed-k6/usage/reference.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 500 3 | title: Reference 4 | _build: 5 | list: false 6 | --- 7 | 8 | # Reference 9 | 10 | 11 | 12 | {{< section depth=2 >}} 13 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/javascript-api/k6-metrics/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/metrics' 3 | description: 'k6 Custom Metrics API' 4 | weight: 10 5 | --- 6 | 7 | # k6/metrics 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-metrics.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/set-up/set-up-distributed-k6/usage/reference.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 500 3 | title: Reference 4 | _build: 5 | list: false 6 | --- 7 | 8 | # Reference 9 | 10 | 11 | 12 | {{< section depth=2 >}} 13 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/javascript-api/k6-metrics/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/metrics' 3 | description: 'k6 Custom Metrics API' 4 | weight: 10 5 | --- 6 | 7 | # k6/metrics 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-metrics.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/set-up/set-up-distributed-k6/usage/reference.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 500 3 | title: Reference 4 | _build: 5 | list: false 6 | --- 7 | 8 | # Reference 9 | 10 | 11 | 12 | {{< section depth=2 >}} 13 | -------------------------------------------------------------------------------- /vale/styles/Grafana/GooglePeriods.yml: -------------------------------------------------------------------------------- 1 | "extends": "existence" 2 | "level": "error" 3 | "link": "https://developers.google.com/style/abbreviations" 4 | "message": "Don't use periods with acronyms or initialisms such as '%s'." 5 | "nonword": true 6 | "tokens": 7 | - "\\b(?:[A-Z]\\.){3,}" 8 | -------------------------------------------------------------------------------- /vale/styles/Grafana/ReadabilityLIX.yml: -------------------------------------------------------------------------------- 1 | "condition": "> 0" 2 | "extends": "metric" 3 | "formula": | 4 | (words / sentences) + ((long_words * 100) / words) 5 | "level": "suggestion" 6 | "link": "https://en.wikipedia.org/wiki/Lix_(readability_test)" 7 | "message": "%s aim for below 35." 8 | -------------------------------------------------------------------------------- /vale/styles/Grafana/ReadabilitySMOG.yml: -------------------------------------------------------------------------------- 1 | "condition": "> 0" 2 | "extends": "metric" 3 | "formula": | 4 | 1.0430 * math.sqrt((polysyllabic_words * 30.0) / sentences) + 3.1291 5 | "level": "suggestion" 6 | "link": "https://en.wikipedia.org/wiki/SMOG" 7 | "message": "%s aim for below 10." 8 | -------------------------------------------------------------------------------- /vale/styles/Grafana/EndToEnd.yml: -------------------------------------------------------------------------------- 1 | extends: substitution 2 | message: | 3 | Use '%s' instead of '%s'. 4 | link: https://grafana.com/docs/writers-toolkit/write/style-guide/word-list/#end-to-end 5 | level: warning 6 | action: 7 | name: replace 8 | swap: 9 | "[eE]2[eE]": end-to-end 10 | -------------------------------------------------------------------------------- /.github/prompts/copy-edit-grafana.prompt.md: -------------------------------------------------------------------------------- 1 | --- 2 | agent: 'agent' 3 | model: Sonnet 4.5 4 | description: 'Copy edit source content for clarity, grammar, and style using the Grafana style guide' 5 | --- 6 | Copy edit this file according to the Grafana style guide, improve grammar, and fix spelling. 7 | -------------------------------------------------------------------------------- /docs/sources/k6-studio/set-up/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Set up' 3 | description: 'Learn how to install and configure k6 Studio' 4 | weight: 200 5 | --- 6 | 7 | # Set up 8 | 9 | This section includes the following topics: 10 | 11 | {{< section menuTitle="true" withDescriptions="true">}} 12 | -------------------------------------------------------------------------------- /linkinator.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "concurrency": 10, 3 | "recurse": true, 4 | "retry": true, 5 | "retryErrorsCount": 3, 6 | "retryErrorsJitter": 5, 7 | "skip": "localhost|linkedin.com|fonts.googleapis.com|.*(\\.js|\\.css)$", 8 | "verbosity": "error", 9 | "format": "json" 10 | } 11 | -------------------------------------------------------------------------------- /vale/styles/Grafana/GoogleEllipses.yml: -------------------------------------------------------------------------------- 1 | "action": 2 | "name": "remove" 3 | "extends": "existence" 4 | "level": "warning" 5 | "link": "https://developers.google.com/style/ellipses" 6 | "message": "In general, don't use an ellipsis." 7 | "nonword": true 8 | "tokens": 9 | - "\\.\\.\\." 10 | -------------------------------------------------------------------------------- /vale/styles/Grafana/ReadabilityGunningFog.yml: -------------------------------------------------------------------------------- 1 | "condition": "> 0" 2 | "extends": "metric" 3 | "formula": | 4 | 0.4 * ((words / sentences) + 100 * (complex_words / words)) 5 | "level": "suggestion" 6 | "link": "https://en.wikipedia.org/wiki/Gunning_fog_index" 7 | "message": "%s aim for below 10." 8 | -------------------------------------------------------------------------------- /docs/sources/k6/next/shared/browser-module-wip.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: k6/experimental/browser module admonition 3 | --- 4 | 5 | {{< admonition type="caution" >}} 6 | 7 | This API is a work in progress. Some of the following functionalities might behave unexpectedly. 8 | 9 | {{< /admonition >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/shared/browser-module-wip.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: k6/experimental/browser module admonition 3 | --- 4 | 5 | {{< admonition type="caution" >}} 6 | 7 | This API is a work in progress. Some of the following functionalities might behave unexpectedly. 8 | 9 | {{< /admonition >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/shared/browser-module-wip.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: k6/experimental/browser module admonition 3 | --- 4 | 5 | {{< admonition type="caution" >}} 6 | 7 | This API is a work in progress. Some of the following functionalities might behave unexpectedly. 8 | 9 | {{< /admonition >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/shared/browser-module-wip.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: k6/experimental/browser module admonition 3 | --- 4 | 5 | {{< admonition type="caution" >}} 6 | 7 | This API is a work in progress. Some of the following functionalities might behave unexpectedly. 8 | 9 | {{< /admonition >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/shared/browser-module-wip.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: k6/experimental/browser module admonition 3 | --- 4 | 5 | {{< admonition type="caution" >}} 6 | 7 | This API is a work in progress. Some of the following functionalities might behave unexpectedly. 8 | 9 | {{< /admonition >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/shared/browser-module-wip.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: k6/experimental/browser module admonition 3 | --- 4 | 5 | {{< admonition type="caution" >}} 6 | 7 | This API is a work in progress. Some of the following functionalities might behave unexpectedly. 8 | 9 | {{< /admonition >}} 10 | -------------------------------------------------------------------------------- /vale/styles/Grafana/Please.yml: -------------------------------------------------------------------------------- 1 | extends: existence 2 | message: "It's great to be polite, but using 'please' in a set of instructions is overdoing the politeness." 3 | level: error 4 | link: https://developers.google.com/style/tone#politeness 5 | ignorecase: true 6 | limit: 1 7 | tokens: 8 | - please 9 | -------------------------------------------------------------------------------- /docs/sources/k6/next/javascript-api/k6-html/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/html' 3 | description: 'The k6/html module contains functionality for HTML parsing.' 4 | weight: 08 5 | --- 6 | 7 | # k6/html 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-html.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.47.x/shared/browser-module-wip.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: k6/experimental/browser module admonition 3 | --- 4 | 5 | {{< admonition type="caution" >}} 6 | 7 | This API is a work in progress. Some of the following functionalities might behave unexpectedly. 8 | 9 | {{< /admonition >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.48.x/shared/browser-module-wip.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: k6/experimental/browser module admonition 3 | --- 4 | 5 | {{< admonition type="caution" >}} 6 | 7 | This API is a work in progress. Some of the following functionalities might behave unexpectedly. 8 | 9 | {{< /admonition >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.49.x/shared/browser-module-wip.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: k6/experimental/browser module admonition 3 | --- 4 | 5 | {{< admonition type="caution" >}} 6 | 7 | This API is a work in progress. Some of the following functionalities might behave unexpectedly. 8 | 9 | {{< /admonition >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.50.x/shared/browser-module-wip.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: k6/experimental/browser module admonition 3 | --- 4 | 5 | {{< admonition type="caution" >}} 6 | 7 | This API is a work in progress. Some of the following functionalities might behave unexpectedly. 8 | 9 | {{< /admonition >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.51.x/shared/browser-module-wip.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: k6/experimental/browser module admonition 3 | --- 4 | 5 | {{< admonition type="caution" >}} 6 | 7 | This API is a work in progress. Some of the following functionalities might behave unexpectedly. 8 | 9 | {{< /admonition >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/shared/browser-module-wip.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: k6/experimental/browser module admonition 3 | --- 4 | 5 | {{< admonition type="caution" >}} 6 | 7 | This API is a work in progress. Some of the following functionalities might behave unexpectedly. 8 | 9 | {{< /admonition >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/shared/browser-module-wip.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: k6/experimental/browser module admonition 3 | --- 4 | 5 | {{< admonition type="caution" >}} 6 | 7 | This API is a work in progress. Some of the following functionalities might behave unexpectedly. 8 | 9 | {{< /admonition >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/shared/browser-module-wip.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: k6/experimental/browser module admonition 3 | --- 4 | 5 | {{< admonition type="caution" >}} 6 | 7 | This API is a work in progress. Some of the following functionalities might behave unexpectedly. 8 | 9 | {{< /admonition >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/shared/browser-module-wip.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: k6/experimental/browser module admonition 3 | --- 4 | 5 | {{< admonition type="caution" >}} 6 | 7 | This API is a work in progress. Some of the following functionalities might behave unexpectedly. 8 | 9 | {{< /admonition >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/shared/browser-module-wip.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: k6/experimental/browser module admonition 3 | --- 4 | 5 | {{< admonition type="caution" >}} 6 | 7 | This API is a work in progress. Some of the following functionalities might behave unexpectedly. 8 | 9 | {{< /admonition >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/shared/browser-module-wip.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: k6/experimental/browser module admonition 3 | --- 4 | 5 | {{< admonition type="caution" >}} 6 | 7 | This API is a work in progress. Some of the following functionalities might behave unexpectedly. 8 | 9 | {{< /admonition >}} 10 | -------------------------------------------------------------------------------- /vale/styles/Grafana/AllowsTo.yml: -------------------------------------------------------------------------------- 1 | extends: substitution 2 | message: | 3 | Did you mean '%s' instead of '%s'? 4 | 5 | Allows to is a common wording error. 6 | level: warning 7 | ignorecase: false 8 | action: 9 | name: replace 10 | swap: 11 | allows to: allows you to|makes it possible to 12 | -------------------------------------------------------------------------------- /docs/sources/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "quoteProps": "consistent", 4 | "trailingComma": "es5", 5 | "printWidth": 100, 6 | "overrides": [ 7 | { 8 | "files": ["**/*.md"], 9 | "options": { 10 | "parser": "markdown" 11 | } 12 | } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/javascript-api/k6-html/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/html' 3 | description: 'The k6/html module contains functionality for HTML parsing.' 4 | weight: 08 5 | --- 6 | 7 | # k6/html 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-html.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/javascript-api/k6-html/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/html' 3 | description: 'The k6/html module contains functionality for HTML parsing.' 4 | weight: 08 5 | --- 6 | 7 | # k6/html 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-html.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/javascript-api/k6-html/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/html' 3 | description: 'The k6/html module contains functionality for HTML parsing.' 4 | weight: 08 5 | --- 6 | 7 | # k6/html 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-html.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/javascript-api/k6-html/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/html' 3 | description: 'The k6/html module contains functionality for HTML parsing.' 4 | weight: 08 5 | --- 6 | 7 | # k6/html 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-html.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/javascript-api/k6-html/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/html' 3 | description: 'The k6/html module contains functionality for HTML parsing.' 4 | weight: 08 5 | --- 6 | 7 | # k6/html 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-html.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/javascript-api/k6-html/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/html' 3 | description: 'The k6/html module contains functionality for HTML parsing.' 4 | weight: 08 5 | --- 6 | 7 | # k6/html 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-html.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/javascript-api/k6-html/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/html' 3 | description: 'The k6/html module contains functionality for HTML parsing.' 4 | weight: 08 5 | --- 6 | 7 | # k6/html 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-html.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/javascript-api/k6-html/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/html' 3 | description: 'The k6/html module contains functionality for HTML parsing.' 4 | weight: 08 5 | --- 6 | 7 | # k6/html 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-html.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/javascript-api/k6-html/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/html' 3 | description: 'The k6/html module contains functionality for HTML parsing.' 4 | weight: 08 5 | --- 6 | 7 | # k6/html 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-html.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/javascript-api/k6-html/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/html' 3 | description: 'The k6/html module contains functionality for HTML parsing.' 4 | weight: 08 5 | --- 6 | 7 | # k6/html 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-html.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/javascript-api/k6-html/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/html' 3 | description: 'The k6/html module contains functionality for HTML parsing.' 4 | weight: 08 5 | --- 6 | 7 | # k6/html 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-html.md" version="" >}} 10 | -------------------------------------------------------------------------------- /vale/styles/Grafana/GoogleRanges.yml: -------------------------------------------------------------------------------- 1 | "extends": "existence" 2 | "level": "warning" 3 | "link": "https://developers.google.com/style/hyphens" 4 | "message": "Don't add words such as 'from' or 'between' to describe a range of numbers." 5 | "nonword": true 6 | "tokens": 7 | - "(?:from|between)\\s\\d+\\s?-\\s?\\d+" 8 | -------------------------------------------------------------------------------- /vale/styles/Grafana/Latin.yml: -------------------------------------------------------------------------------- 1 | action: 2 | name: replace 3 | extends: substitution 4 | ignorecase: true 5 | level: error 6 | link: https://developers.google.com/style/abbreviations#dont-use 7 | message: Use '%s' instead of '%s'. 8 | swap: 9 | 'e\.?g[,.]?': for example 10 | 'i\.?e[,.]?': that is 11 | -------------------------------------------------------------------------------- /.github/prompts/copy-edit-google.prompt.md: -------------------------------------------------------------------------------- 1 | --- 2 | agent: 'agent' 3 | model: Sonnet 4.5 4 | description: 'Copy edit source content for clarity, grammar, and style using the Google developer style guide' 5 | --- 6 | Copy edit this file according to the Google developer style guide, improve grammar, and fix spelling. 7 | -------------------------------------------------------------------------------- /docs/sources/k6/next/javascript-api/import.meta/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'import.meta' 3 | description: 'Details about the ECMAScript import meta property.' 4 | weight: 20 5 | --- 6 | 7 | ## import.meta 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/import.meta.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/javascript-api/import.meta/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'import.meta' 3 | description: 'Details about the ECMAScript import meta property.' 4 | weight: 20 5 | --- 6 | 7 | ## import.meta 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/import.meta.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/javascript-api/import.meta/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'import.meta' 3 | description: 'Details about the ECMAScript import meta property.' 4 | weight: 20 5 | --- 6 | 7 | ## import.meta 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/import.meta.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/javascript-api/import.meta/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'import.meta' 3 | description: 'Details about the ECMAScript import meta property.' 4 | weight: 20 5 | --- 6 | 7 | ## import.meta 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/import.meta.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/javascript-api/import.meta/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'import.meta' 3 | description: 'Details about the ECMAScript import meta property.' 4 | weight: 20 5 | --- 6 | 7 | ## import.meta 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/import.meta.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/javascript-api/import.meta/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'import.meta' 3 | description: 'Details about the ECMAScript import meta property.' 4 | weight: 20 5 | --- 6 | 7 | ## import.meta 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/import.meta.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/javascript-api/import.meta/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'import.meta' 3 | description: 'Details about the ECMAScript import meta property.' 4 | weight: 20 5 | --- 6 | 7 | ## import.meta 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/import.meta.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/javascript-api/import.meta/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'import.meta' 3 | description: 'Details about the ECMAScript import meta property.' 4 | weight: 20 5 | --- 6 | 7 | ## import.meta 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/import.meta.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/javascript-api/import.meta/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'import.meta' 3 | description: 'Details about the ECMAScript import meta property.' 4 | weight: 20 5 | --- 6 | 7 | ## import.meta 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/import.meta.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/javascript-api/import.meta/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'import.meta' 3 | description: 'Details about the ECMAScript import meta property.' 4 | weight: 20 5 | --- 6 | 7 | ## import.meta 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/import.meta.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/javascript-api/import.meta/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'import.meta' 3 | description: 'Details about the ECMAScript import meta property.' 4 | weight: 20 5 | --- 6 | 7 | ## import.meta 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/import.meta.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/next/javascript-api/k6-http/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/http' 3 | description: 'The k6/http module contains functionality for performing HTTP transactions.' 4 | weight: 09 5 | --- 6 | 7 | # k6/http 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-http.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/shared/webcrypto/supported-key-methods-formats.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: webcrypto/supported key methods formats 3 | --- 4 | 5 | - `ECDH` and `ECDSA` algorithms have support for `pkcs8`, `spki`, `raw` and `jwk` formats. 6 | - `AES-*` and `HMAC` algorithms have currently support for `raw` and `jwk` formats. 7 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/shared/webcrypto/supported-key-methods-formats.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: webcrypto/supported key methods formats 3 | --- 4 | 5 | - `ECDH` and `ECDSA` algorithms have support for `pkcs8`, `spki`, `raw` and `jwk` formats. 6 | - `AES-*` and `HMAC` algorithms have currently support for `raw` and `jwk` formats. 7 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/shared/webcrypto/supported-key-methods-formats.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: webcrypto/supported key methods formats 3 | --- 4 | 5 | - `ECDH` and `ECDSA` algorithms have support for `pkcs8`, `spki`, `raw` and `jwk` formats. 6 | - `AES-*` and `HMAC` algorithms have currently support for `raw` and `jwk` formats. 7 | -------------------------------------------------------------------------------- /vale/styles/Grafana/GoogleGender.yml: -------------------------------------------------------------------------------- 1 | "extends": "existence" 2 | "ignorecase": true 3 | "level": "error" 4 | "link": "https://developers.google.com/style/pronouns#gender-neutral-pronouns" 5 | "message": "Don't use '%s' as a gender-neutral pronoun." 6 | "tokens": 7 | - "he/she" 8 | - "s/he" 9 | - "\\(s\\)he" 10 | -------------------------------------------------------------------------------- /vale/styles/Grafana/ReadabilityAutomatedReadability.yml: -------------------------------------------------------------------------------- 1 | "condition": "> 0" 2 | "extends": "metric" 3 | "formula": | 4 | (4.71 * (characters / words)) + (0.5 * (words / sentences)) - 21.43 5 | "level": "suggestion" 6 | "link": "https://en.wikipedia.org/wiki/Automated_readability_index" 7 | "message": "%s aim for below 8." 8 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.47.x/examples/crawl-webpage.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Crawl a web page' 3 | redirect: 'https://stackoverflow.com/questions/60927653/downloading-whole-websites-with-k6/' 4 | description: | 5 | Stack overflow answer demonstrating how to crawl a web page 6 | weight: 17 7 | --- 8 | 9 | # Crawl a web page 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.48.x/examples/crawl-webpage.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Crawl a web page' 3 | redirect: 'https://stackoverflow.com/questions/60927653/downloading-whole-websites-with-k6/' 4 | description: | 5 | Stack overflow answer demonstrating how to crawl a web page 6 | weight: 17 7 | --- 8 | 9 | # Crawl a web page 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.49.x/examples/crawl-webpage.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Crawl a web page' 3 | redirect: 'https://stackoverflow.com/questions/60927653/downloading-whole-websites-with-k6/' 4 | description: | 5 | Stack overflow answer demonstrating how to crawl a web page 6 | weight: 17 7 | --- 8 | 9 | # Crawl a web page 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.50.x/examples/crawl-webpage.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Crawl a web page' 3 | redirect: 'https://stackoverflow.com/questions/60927653/downloading-whole-websites-with-k6/' 4 | description: | 5 | Stack overflow answer demonstrating how to crawl a web page 6 | weight: 17 7 | --- 8 | 9 | # Crawl a web page 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.51.x/examples/crawl-webpage.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Crawl a web page' 3 | redirect: 'https://stackoverflow.com/questions/60927653/downloading-whole-websites-with-k6/' 4 | description: | 5 | Stack overflow answer demonstrating how to crawl a web page 6 | weight: 17 7 | --- 8 | 9 | # Crawl a web page 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/examples/crawl-webpage.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Crawl a web page' 3 | redirect: 'https://stackoverflow.com/questions/60927653/downloading-whole-websites-with-k6/' 4 | description: | 5 | Stack overflow answer demonstrating how to crawl a web page 6 | weight: 17 7 | --- 8 | 9 | # Crawl a web page 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/javascript-api/k6-http/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/http' 3 | description: 'The k6/http module contains functionality for performing HTTP transactions.' 4 | weight: 09 5 | --- 6 | 7 | # k6/http 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-http.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/javascript-api/k6-http/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/http' 3 | description: 'The k6/http module contains functionality for performing HTTP transactions.' 4 | weight: 09 5 | --- 6 | 7 | # k6/http 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-http.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/javascript-api/k6-http/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/http' 3 | description: 'The k6/http module contains functionality for performing HTTP transactions.' 4 | weight: 09 5 | --- 6 | 7 | # k6/http 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-http.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/javascript-api/k6-http/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/http' 3 | description: 'The k6/http module contains functionality for performing HTTP transactions.' 4 | weight: 09 5 | --- 6 | 7 | # k6/http 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-http.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/javascript-api/k6-http/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/http' 3 | description: 'The k6/http module contains functionality for performing HTTP transactions.' 4 | weight: 09 5 | --- 6 | 7 | # k6/http 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-http.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/javascript-api/k6-http/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/http' 3 | description: 'The k6/http module contains functionality for performing HTTP transactions.' 4 | weight: 09 5 | --- 6 | 7 | # k6/http 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-http.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/javascript-api/k6-http/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/http' 3 | description: 'The k6/http module contains functionality for performing HTTP transactions.' 4 | weight: 09 5 | --- 6 | 7 | # k6/http 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-http.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/javascript-api/k6-http/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/http' 3 | description: 'The k6/http module contains functionality for performing HTTP transactions.' 4 | weight: 09 5 | --- 6 | 7 | # k6/http 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-http.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/javascript-api/k6-http/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/http' 3 | description: 'The k6/http module contains functionality for performing HTTP transactions.' 4 | weight: 09 5 | --- 6 | 7 | # k6/http 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-http.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/javascript-api/k6-http/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/http' 3 | description: 'The k6/http module contains functionality for performing HTTP transactions.' 4 | weight: 09 5 | --- 6 | 7 | # k6/http 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-http.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/javascript-api/k6-http/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/http' 3 | description: 'The k6/http module contains functionality for performing HTTP transactions.' 4 | weight: 09 5 | --- 6 | 7 | # k6/http 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-http.md" version="" >}} 10 | -------------------------------------------------------------------------------- /scripts/cloudfront-invalidate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # https://stackoverflow.com/questions/34650527/how-to-use-environment-variables-in-package-json 4 | # creating script to pass the CloudFrontDistributionID as env variable 5 | aws cloudfront create-invalidation --distribution-id "$AWS_CLOUDFRONT_DISTRIBUTION_ID" --paths "/docs*" -------------------------------------------------------------------------------- /vale/styles/Grafana/ReadabilityColemanLiau.yml: -------------------------------------------------------------------------------- 1 | "condition": "> 0" 2 | "extends": "metric" 3 | "formula": | 4 | (0.0588 * (characters / words) * 100) - (0.296 * (sentences / words) * 100) - 15.8 5 | "level": "suggestion" 6 | "link": "https://en.wikipedia.org/wiki/Coleman%E2%80%93Liau_index" 7 | "message": "%s aim for below 9." 8 | -------------------------------------------------------------------------------- /vale/styles/Grafana/DocumentationTeam.yml: -------------------------------------------------------------------------------- 1 | extends: substitution 2 | level: warning 3 | message: Use '%s' rather than '%s'. 4 | 5 | action: 6 | name: replace 7 | swap: 8 | "[Dd]ocs? (?:[Ss]quad|[Tt]eam)": the Grafana Labs documentation team 9 | "[Dd]ocumentation (?:[Ss]quad|Team)": the Grafana Labs documentation team 10 | -------------------------------------------------------------------------------- /vale/styles/Grafana/GoogleAMPM.yml: -------------------------------------------------------------------------------- 1 | "extends": "existence" 2 | "level": "error" 3 | "link": "https://developers.google.com/style/word-list" 4 | "message": "Use 'AM' or 'PM' (preceded by a space)." 5 | "nonword": true 6 | "tokens": 7 | - "\\d{1,2}[AP]M\\b" 8 | - "\\d{1,2} ?[ap]m\\b" 9 | - "\\d{1,2} ?[aApP]\\.[mM]\\." 10 | -------------------------------------------------------------------------------- /vale/styles/Grafana/GoogleSpacing.yml: -------------------------------------------------------------------------------- 1 | "action": 2 | "name": "remove" 3 | "extends": "existence" 4 | "level": "error" 5 | "link": "https://developers.google.com/style/sentence-spacing" 6 | "message": "'%s' should have one space." 7 | "nonword": true 8 | "tokens": 9 | - "[a-z][.?!] {2,}[A-Z]" 10 | - "[a-z][.?!][A-Z]" 11 | -------------------------------------------------------------------------------- /vale/styles/Grafana/ReadabilityFleschKincaid.yml: -------------------------------------------------------------------------------- 1 | "condition": "> 0" 2 | "extends": "metric" 3 | "formula": | 4 | (0.39 * (words / sentences)) + (11.8 * (syllables / words)) - 15.59 5 | "level": "suggestion" 6 | "link": "https://en.wikipedia.org/wiki/Flesch%E2%80%93Kincaid_readability_tests" 7 | "message": "%s aim for below 8." 8 | -------------------------------------------------------------------------------- /docs/sources/k6/next/javascript-api/k6-browser/frame/url.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'url()' 3 | description: 'Browser module: frame.url method' 4 | --- 5 | 6 | # url() 7 | 8 | Returns the frame's URL. 9 | 10 | ### Returns 11 | 12 | | Type | Description | 13 | | ------ | ---------------- | 14 | | string | The frame's URL. | 15 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/javascript-api/k6-browser/frame/url.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'url()' 3 | description: 'Browser module: frame.url method' 4 | --- 5 | 6 | # url() 7 | 8 | Returns the frame's URL. 9 | 10 | ### Returns 11 | 12 | | Type | Description | 13 | | ------ | ---------------- | 14 | | string | The frame's URL. | 15 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/javascript-api/k6-browser/frame/url.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'url()' 3 | description: 'Browser module: frame.url method' 4 | --- 5 | 6 | # url() 7 | 8 | Returns the frame's URL. 9 | 10 | ### Returns 11 | 12 | | Type | Description | 13 | | ------ | ---------------- | 14 | | string | The frame's URL. | 15 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/javascript-api/k6-browser/frame/url.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'url()' 3 | description: 'Browser module: frame.url method' 4 | --- 5 | 6 | # url() 7 | 8 | Returns the frame's URL. 9 | 10 | ### Returns 11 | 12 | | Type | Description | 13 | | ------ | ---------------- | 14 | | string | The frame's URL. | 15 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/javascript-api/k6-browser/frame/url.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'url()' 3 | description: 'Browser module: frame.url method' 4 | --- 5 | 6 | # url() 7 | 8 | Returns the frame's URL. 9 | 10 | ### Returns 11 | 12 | | Type | Description | 13 | | ------ | ---------------- | 14 | | string | The frame's URL. | 15 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/javascript-api/k6-browser/frame/url.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'url()' 3 | description: 'Browser module: frame.url method' 4 | --- 5 | 6 | # url() 7 | 8 | Returns the frame's URL. 9 | 10 | ### Returns 11 | 12 | | Type | Description | 13 | | ------ | ---------------- | 14 | | string | The frame's URL. | 15 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/javascript-api/k6-browser/frame/url.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'url()' 3 | description: 'Browser module: frame.url method' 4 | --- 5 | 6 | # url() 7 | 8 | Returns the frame's URL. 9 | 10 | ### Returns 11 | 12 | | Type | Description | 13 | | ------ | ---------------- | 14 | | string | The frame's URL. | 15 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/javascript-api/k6-browser/frame/url.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'url()' 3 | description: 'Browser module: frame.url method' 4 | --- 5 | 6 | # url() 7 | 8 | Returns the frame's URL. 9 | 10 | ### Returns 11 | 12 | | Type | Description | 13 | | ------ | ---------------- | 14 | | string | The frame's URL. | 15 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/javascript-api/k6-browser/frame/url.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'url()' 3 | description: 'Browser module: frame.url method' 4 | --- 5 | 6 | # url() 7 | 8 | Returns the frame's URL. 9 | 10 | ### Returns 11 | 12 | | Type | Description | 13 | | ------ | ---------------- | 14 | | string | The frame's URL. | 15 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/javascript-api/k6-browser/frame/url.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'url()' 3 | description: 'Browser module: frame.url method' 4 | --- 5 | 6 | # url() 7 | 8 | Returns the frame's URL. 9 | 10 | ### Returns 11 | 12 | | Type | Description | 13 | | ------ | ---------------- | 14 | | string | The frame's URL. | 15 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/javascript-api/k6-browser/frame/url.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'url()' 3 | description: 'Browser module: frame.url method' 4 | --- 5 | 6 | # url() 7 | 8 | Returns the frame's URL. 9 | 10 | ### Returns 11 | 12 | | Type | Description | 13 | | ------ | ---------------- | 14 | | string | The frame's URL. | 15 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/javascript-api/k6-browser/frame/url.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'url()' 3 | description: 'Browser module: frame.url method' 4 | --- 5 | 6 | # url() 7 | 8 | Returns the frame's URL. 9 | 10 | ### Returns 11 | 12 | | Type | Description | 13 | | ------ | ---------------- | 14 | | string | The frame's URL. | 15 | -------------------------------------------------------------------------------- /vale/styles/Grafana/GoogleSlang.yml: -------------------------------------------------------------------------------- 1 | "extends": "existence" 2 | "ignorecase": true 3 | "level": "error" 4 | "link": "https://developers.google.com/style/abbreviations" 5 | "message": "Don't use internet slang abbreviations such as '%s'." 6 | "tokens": 7 | - "tl;dr" 8 | - "ymmv" 9 | - "rtfm" 10 | - "imo" 11 | - "fwiw" 12 | -------------------------------------------------------------------------------- /vale/styles/Grafana/GoogleSpelling.yml: -------------------------------------------------------------------------------- 1 | "extends": "existence" 2 | "ignorecase": true 3 | "level": "warning" 4 | "link": "https://developers.google.com/style/spelling" 5 | "message": "In general, use American spelling instead of '%s'." 6 | "tokens": 7 | - "(?:\\w+)nised?" 8 | - "colour" 9 | - "labour" 10 | - "centre" 11 | -------------------------------------------------------------------------------- /vale/styles/Grafana/React.yml: -------------------------------------------------------------------------------- 1 | extends: substitution 2 | level: warning 3 | link: https://grafana.com/docs/writers-toolkit/write/style-guide/word-list/#react 4 | message: Use '%s' instead of '%s'. 5 | 6 | ignorecase: false 7 | nonword: true 8 | 9 | action: 10 | name: replace 11 | swap: 12 | "[Rr]eact[. ]?[Jj][Ss]": React 13 | -------------------------------------------------------------------------------- /docs/sources/k6/next/javascript-api/k6-encoding/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/encoding' 3 | description: 'The encoding module provides base64 encoding/decoding as defined by RFC4648.' 4 | weight: 05 5 | --- 6 | 7 | # k6/encoding 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-encoding.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/javascript-api/k6-encoding/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/encoding' 3 | description: 'The encoding module provides base64 encoding/decoding as defined by RFC4648.' 4 | weight: 05 5 | --- 6 | 7 | # k6/encoding 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-encoding.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/javascript-api/k6-encoding/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/encoding' 3 | description: 'The encoding module provides base64 encoding/decoding as defined by RFC4648.' 4 | weight: 05 5 | --- 6 | 7 | # k6/encoding 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-encoding.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/javascript-api/k6-encoding/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/encoding' 3 | description: 'The encoding module provides base64 encoding/decoding as defined by RFC4648.' 4 | weight: 05 5 | --- 6 | 7 | # k6/encoding 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-encoding.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/javascript-api/k6-encoding/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/encoding' 3 | description: 'The encoding module provides base64 encoding/decoding as defined by RFC4648.' 4 | weight: 05 5 | --- 6 | 7 | # k6/encoding 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-encoding.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/javascript-api/k6-encoding/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/encoding' 3 | description: 'The encoding module provides base64 encoding/decoding as defined by RFC4648.' 4 | weight: 05 5 | --- 6 | 7 | # k6/encoding 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-encoding.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/javascript-api/k6-encoding/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/encoding' 3 | description: 'The encoding module provides base64 encoding/decoding as defined by RFC4648.' 4 | weight: 05 5 | --- 6 | 7 | # k6/encoding 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-encoding.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/javascript-api/k6-encoding/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/encoding' 3 | description: 'The encoding module provides base64 encoding/decoding as defined by RFC4648.' 4 | weight: 05 5 | --- 6 | 7 | # k6/encoding 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-encoding.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/javascript-api/k6-encoding/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/encoding' 3 | description: 'The encoding module provides base64 encoding/decoding as defined by RFC4648.' 4 | weight: 05 5 | --- 6 | 7 | # k6/encoding 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-encoding.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/javascript-api/k6-encoding/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/encoding' 3 | description: 'The encoding module provides base64 encoding/decoding as defined by RFC4648.' 4 | weight: 05 5 | --- 6 | 7 | # k6/encoding 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-encoding.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/javascript-api/k6-encoding/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/encoding' 3 | description: 'The encoding module provides base64 encoding/decoding as defined by RFC4648.' 4 | weight: 05 5 | --- 6 | 7 | # k6/encoding 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-encoding.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/javascript-api/k6-encoding/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/encoding' 3 | description: 'The encoding module provides base64 encoding/decoding as defined by RFC4648.' 4 | weight: 05 5 | --- 6 | 7 | # k6/encoding 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/k6-encoding.md" version="" >}} 10 | -------------------------------------------------------------------------------- /vale/styles/Grafana/Exclamation.yml: -------------------------------------------------------------------------------- 1 | action: 2 | name: remove 3 | extends: existence 4 | level: warning 5 | link: https://developers.google.com/style/tone#some-things-to-avoid-where-possible 6 | message: Avoid exclamation points in text, except in rare really exciting moments. 7 | nonword: true 8 | tokens: 9 | - "\\w+!(?:\\s|$)" 10 | -------------------------------------------------------------------------------- /vale/styles/Grafana/OAuth.yml: -------------------------------------------------------------------------------- 1 | extends: substitution 2 | level: suggestion 3 | link: https://developers.google.com/style/word-list#oauth-20 4 | message: Use '%s' instead of '%s'. 5 | 6 | ignorecase: false 7 | 8 | action: 9 | name: replace 10 | swap: 11 | "O[Aa]uth 2(?!\\.0)": OAuth 2.0 12 | "O[Aa]uth(?! 2\\.0)": OAuth 2.0 13 | -------------------------------------------------------------------------------- /vale/styles/Grafana/ReadabilityFleschReadingEase.yml: -------------------------------------------------------------------------------- 1 | "condition": "< 100" 2 | "extends": "metric" 3 | "formula": | 4 | 206.835 - (1.015 * (words / sentences)) - (84.6 * (syllables / words)) 5 | "level": "suggestion" 6 | "link": "https://en.wikipedia.org/wiki/Flesch%E2%80%93Kincaid_readability_tests" 7 | "message": "%s aim for above 70." 8 | -------------------------------------------------------------------------------- /docs/sources/k6/next/javascript-api/k6-ws/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/ws' 3 | description: 'k6 WebSocket API' 4 | weight: 13 5 | --- 6 | 7 | # k6/ws 8 | 9 | {{< docs/shared source="k6" lookup="ws-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-ws.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/javascript-api/k6-ws/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/ws' 3 | description: 'k6 WebSocket API' 4 | weight: 12 5 | --- 6 | 7 | # k6/ws 8 | 9 | {{< docs/shared source="k6" lookup="ws-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-ws.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/javascript-api/k6-ws/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/ws' 3 | description: 'k6 WebSocket API' 4 | weight: 12 5 | --- 6 | 7 | # k6/ws 8 | 9 | {{< docs/shared source="k6" lookup="ws-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-ws.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/javascript-api/k6-ws/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/ws' 3 | description: 'k6 WebSocket API' 4 | weight: 12 5 | --- 6 | 7 | # k6/ws 8 | 9 | {{< docs/shared source="k6" lookup="ws-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-ws.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/javascript-api/k6-ws/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/ws' 3 | description: 'k6 WebSocket API' 4 | weight: 12 5 | --- 6 | 7 | # k6/ws 8 | 9 | {{< docs/shared source="k6" lookup="ws-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-ws.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/javascript-api/k6-ws/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/ws' 3 | description: 'k6 WebSocket API' 4 | weight: 12 5 | --- 6 | 7 | # k6/ws 8 | 9 | {{< docs/shared source="k6" lookup="ws-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-ws.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/javascript-api/k6-ws/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/ws' 3 | description: 'k6 WebSocket API' 4 | weight: 12 5 | --- 6 | 7 | # k6/ws 8 | 9 | {{< docs/shared source="k6" lookup="ws-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-ws.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/javascript-api/k6-ws/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/ws' 3 | description: 'k6 WebSocket API' 4 | weight: 12 5 | --- 6 | 7 | # k6/ws 8 | 9 | {{< docs/shared source="k6" lookup="ws-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-ws.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/javascript-api/k6-ws/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/ws' 3 | description: 'k6 WebSocket API' 4 | weight: 12 5 | --- 6 | 7 | # k6/ws 8 | 9 | {{< docs/shared source="k6" lookup="ws-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-ws.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/javascript-api/k6-ws/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/ws' 3 | description: 'k6 WebSocket API' 4 | weight: 12 5 | --- 6 | 7 | # k6/ws 8 | 9 | {{< docs/shared source="k6" lookup="ws-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-ws.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/javascript-api/k6-ws/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/ws' 3 | description: 'k6 WebSocket API' 4 | weight: 12 5 | --- 6 | 7 | # k6/ws 8 | 9 | {{< docs/shared source="k6" lookup="ws-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-ws.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/javascript-api/k6-ws/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/ws' 3 | description: 'k6 WebSocket API' 4 | weight: 12 5 | --- 6 | 7 | # k6/ws 8 | 9 | {{< docs/shared source="k6" lookup="ws-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-ws.md" version="" >}} 12 | -------------------------------------------------------------------------------- /vale/styles/Grafana/GoogleEmDash.yml: -------------------------------------------------------------------------------- 1 | "action": 2 | "name": "edit" 3 | "params": 4 | - "trim" 5 | - " " 6 | "extends": "existence" 7 | "level": "error" 8 | "link": "https://developers.google.com/style/dashes" 9 | "message": "Don't put a space before or after a dash." 10 | "nonword": true 11 | "tokens": 12 | - "\\s[—–]\\s" 13 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.47.x/misc/release-notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Release notes 3 | weight: 06 4 | --- 5 | 6 | # Release notes 7 | 8 | You can find the k6 release notes in the k6 GitHub repository on the [Releases page](https://github.com/grafana/k6/releases), and the "[release notes](https://github.com/grafana/k6/tree/master/release%20notes)" folder. 9 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.48.x/misc/release-notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Release notes 3 | weight: 06 4 | --- 5 | 6 | # Release notes 7 | 8 | You can find the k6 release notes in the k6 GitHub repository on the [Releases page](https://github.com/grafana/k6/releases), and the "[release notes](https://github.com/grafana/k6/tree/master/release%20notes)" folder. 9 | -------------------------------------------------------------------------------- /vale/styles/Grafana/Admin.yml: -------------------------------------------------------------------------------- 1 | extends: substitution 2 | message: | 3 | Use '%s' instead of '%s' unless it's the name of the UI label like in the Grafana 'Admin' role. 4 | link: https://developers.google.com/style/word-list#admin 5 | level: warning 6 | ignorecase: false 7 | action: 8 | name: replace 9 | swap: 10 | admin: administrator 11 | -------------------------------------------------------------------------------- /vale/styles/Grafana/GoogleEnDash.yml: -------------------------------------------------------------------------------- 1 | "action": 2 | "name": "edit" 3 | "params": 4 | - "replace" 5 | - "-" 6 | - "—" 7 | "extends": "existence" 8 | "level": "error" 9 | "link": "https://developers.google.com/style/dashes" 10 | "message": "Use an em dash ('—') instead of '–'." 11 | "nonword": true 12 | "tokens": 13 | - "–" 14 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.47.x/examples/data-generation.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Generating realistic data' 3 | redirect: 'https://github.com/k6io/example-data-generation/' 4 | description: | 5 | Reference project demonstrating how to generate data with realistic traits at runtime using faker.js 6 | weight: 16 7 | --- 8 | 9 | # Generating realistic data 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.48.x/examples/data-generation.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Generating realistic data' 3 | redirect: 'https://github.com/k6io/example-data-generation/' 4 | description: | 5 | Reference project demonstrating how to generate data with realistic traits at runtime using faker.js 6 | weight: 16 7 | --- 8 | 9 | # Generating realistic data 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.49.x/examples/data-generation.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Generating realistic data' 3 | redirect: 'https://github.com/k6io/example-data-generation/' 4 | description: | 5 | Reference project demonstrating how to generate data with realistic traits at runtime using faker.js 6 | weight: 16 7 | --- 8 | 9 | # Generating realistic data 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.50.x/examples/data-generation.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Generating realistic data' 3 | redirect: 'https://github.com/k6io/example-data-generation/' 4 | description: | 5 | Reference project demonstrating how to generate data with realistic traits at runtime using faker.js 6 | weight: 16 7 | --- 8 | 9 | # Generating realistic data 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.51.x/examples/data-generation.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Generating realistic data' 3 | redirect: 'https://github.com/k6io/example-data-generation/' 4 | description: | 5 | Reference project demonstrating how to generate data with realistic traits at runtime using faker.js 6 | weight: 16 7 | --- 8 | 9 | # Generating realistic data 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/examples/data-generation.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Generating realistic data' 3 | redirect: 'https://github.com/k6io/example-data-generation/' 4 | description: | 5 | Reference project demonstrating how to generate data with realistic traits at runtime using faker.js 6 | weight: 16 7 | --- 8 | 9 | # Generating realistic data 10 | -------------------------------------------------------------------------------- /vale/styles/Grafana/MetaMonitoring.yml: -------------------------------------------------------------------------------- 1 | extends: substitution 2 | message: | 3 | Use '%s' instead of '%s'. 4 | link: https://grafana.com/docs/writers-toolkit/write/style-guide/word-list/#meta-monitoring 5 | level: warning 6 | action: 7 | name: replace 8 | swap: 9 | "meta ?monitoring": meta-monitoring 10 | "meat ?monitoring": meta-monitoring 11 | -------------------------------------------------------------------------------- /vale/styles/Grafana/Parentheses.yml: -------------------------------------------------------------------------------- 1 | extends: existence 2 | level: suggestion 3 | link: https://developers.google.com/style/parentheses 4 | message: Use parentheses judiciously. 5 | 6 | nonword: true 7 | 8 | tokens: 9 | # Allow for single characters in backticks. 10 | # For example, don't use single asterisks (`*`). 11 | - "\\(.{4,}\\)" 12 | -------------------------------------------------------------------------------- /vale/styles/Grafana/ApacheProjectNames.yml: -------------------------------------------------------------------------------- 1 | "extends": "conditional" 2 | "first": "\\b(Mesos)\\b" 3 | "level": "warning" 4 | "link": "https://grafana.com/docs/writers-toolkit/write/style-guide/capitalization-punctuation/#apache-projects" 5 | "message": "Use the full Apache project name in the first instance." 6 | "scope": "text" 7 | "second": "Apache (Mesos)" 8 | -------------------------------------------------------------------------------- /vale/styles/Grafana/GoogleWill.yml: -------------------------------------------------------------------------------- 1 | "extends": "existence" 2 | "ignorecase": true 3 | "level": "warning" 4 | "link": "https://developers.google.com/style/tense" 5 | "message": | 6 | Avoid using '%s'. 7 | 8 | Use present tense for statements that describe general behavior that's not associated with a particular time. 9 | "tokens": 10 | - "will" 11 | -------------------------------------------------------------------------------- /vale/styles/Grafana/PrometheusExporters.yml: -------------------------------------------------------------------------------- 1 | extends: substitution 2 | level: warning 3 | link: https://grafana.com/docs/writers-toolkit/write/style-guide/word-list/#node-exporter 4 | message: Use '%s' instead of '%s'. 5 | 6 | ignorecase: false 7 | nonword: true 8 | 9 | action: 10 | name: replace 11 | swap: 12 | "[Nn]ode exporter": Node Exporter 13 | -------------------------------------------------------------------------------- /docs/sources/k6/next/testing-guides/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Testing guides' 3 | description: 'A series of guides to help you defining your load testing strategies.' 4 | weight: 500 5 | --- 6 | 7 | # Testing guides 8 | 9 | This section provides a list of frequently asked guides to help you set your testing strategy for common cases. 10 | 11 | {{< section >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.47.x/testing-guides/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Testing guides' 3 | description: 'A series of guides to help you defining your load testing strategies.' 4 | weight: 07 5 | --- 6 | 7 | # Testing guides 8 | 9 | This section provides a list of frequently asked guides to help you set your testing strategy for common cases. 10 | 11 | {{< section >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.48.x/testing-guides/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Testing guides' 3 | description: 'A series of guides to help you defining your load testing strategies.' 4 | weight: 07 5 | --- 6 | 7 | # Testing guides 8 | 9 | This section provides a list of frequently asked guides to help you set your testing strategy for common cases. 10 | 11 | {{< section >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.49.x/testing-guides/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Testing guides' 3 | description: 'A series of guides to help you defining your load testing strategies.' 4 | weight: 07 5 | --- 6 | 7 | # Testing guides 8 | 9 | This section provides a list of frequently asked guides to help you set your testing strategy for common cases. 10 | 11 | {{< section >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.50.x/testing-guides/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Testing guides' 3 | description: 'A series of guides to help you defining your load testing strategies.' 4 | weight: 500 5 | --- 6 | 7 | # Testing guides 8 | 9 | This section provides a list of frequently asked guides to help you set your testing strategy for common cases. 10 | 11 | {{< section >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.51.x/testing-guides/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Testing guides' 3 | description: 'A series of guides to help you defining your load testing strategies.' 4 | weight: 500 5 | --- 6 | 7 | # Testing guides 8 | 9 | This section provides a list of frequently asked guides to help you set your testing strategy for common cases. 10 | 11 | {{< section >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/testing-guides/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Testing guides' 3 | description: 'A series of guides to help you defining your load testing strategies.' 4 | weight: 500 5 | --- 6 | 7 | # Testing guides 8 | 9 | This section provides a list of frequently asked guides to help you set your testing strategy for common cases. 10 | 11 | {{< section >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/testing-guides/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Testing guides' 3 | description: 'A series of guides to help you defining your load testing strategies.' 4 | weight: 500 5 | --- 6 | 7 | # Testing guides 8 | 9 | This section provides a list of frequently asked guides to help you set your testing strategy for common cases. 10 | 11 | {{< section >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/testing-guides/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Testing guides' 3 | description: 'A series of guides to help you defining your load testing strategies.' 4 | weight: 500 5 | --- 6 | 7 | # Testing guides 8 | 9 | This section provides a list of frequently asked guides to help you set your testing strategy for common cases. 10 | 11 | {{< section >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/testing-guides/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Testing guides' 3 | description: 'A series of guides to help you defining your load testing strategies.' 4 | weight: 500 5 | --- 6 | 7 | # Testing guides 8 | 9 | This section provides a list of frequently asked guides to help you set your testing strategy for common cases. 10 | 11 | {{< section >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/testing-guides/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Testing guides' 3 | description: 'A series of guides to help you defining your load testing strategies.' 4 | weight: 500 5 | --- 6 | 7 | # Testing guides 8 | 9 | This section provides a list of frequently asked guides to help you set your testing strategy for common cases. 10 | 11 | {{< section >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/testing-guides/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Testing guides' 3 | description: 'A series of guides to help you defining your load testing strategies.' 4 | weight: 500 5 | --- 6 | 7 | # Testing guides 8 | 9 | This section provides a list of frequently asked guides to help you set your testing strategy for common cases. 10 | 11 | {{< section >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/testing-guides/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Testing guides' 3 | description: 'A series of guides to help you defining your load testing strategies.' 4 | weight: 500 5 | --- 6 | 7 | # Testing guides 8 | 9 | This section provides a list of frequently asked guides to help you set your testing strategy for common cases. 10 | 11 | {{< section >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/testing-guides/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Testing guides' 3 | description: 'A series of guides to help you defining your load testing strategies.' 4 | weight: 500 5 | --- 6 | 7 | # Testing guides 8 | 9 | This section provides a list of frequently asked guides to help you set your testing strategy for common cases. 10 | 11 | {{< section >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/testing-guides/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Testing guides' 3 | description: 'A series of guides to help you defining your load testing strategies.' 4 | weight: 500 5 | --- 6 | 7 | # Testing guides 8 | 9 | This section provides a list of frequently asked guides to help you set your testing strategy for common cases. 10 | 11 | {{< section >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/testing-guides/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Testing guides' 3 | description: 'A series of guides to help you defining your load testing strategies.' 4 | weight: 500 5 | --- 6 | 7 | # Testing guides 8 | 9 | This section provides a list of frequently asked guides to help you set your testing strategy for common cases. 10 | 11 | {{< section >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/testing-guides/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Testing guides' 3 | description: 'A series of guides to help you defining your load testing strategies.' 4 | weight: 500 5 | --- 6 | 7 | # Testing guides 8 | 9 | This section provides a list of frequently asked guides to help you set your testing strategy for common cases. 10 | 11 | {{< section >}} 12 | -------------------------------------------------------------------------------- /vale/styles/Grafana/GoogleProductNames.yml: -------------------------------------------------------------------------------- 1 | "extends": "conditional" 2 | "first": "\\b(Kubernetes Engine)\\b" 3 | "level": "warning" 4 | "link": "https://grafana.com/docs/writers-toolkit/write/style-guide/capitalization-punctuation/#google-products" 5 | "message": "Use the full Google product name in the first instance." 6 | "scope": "text" 7 | "second": "Google (Kubernetes Engine)" 8 | -------------------------------------------------------------------------------- /vale/styles/Grafana/Ordinal.yml: -------------------------------------------------------------------------------- 1 | extends: existence 2 | level: error 3 | link: https://grafana.com/docs/writers-toolkit/write/style-guide/style-conventions/#numbers 4 | message: For ordinals, write out first through ninth. For 10th on, use numerals. 5 | tokens: 6 | - 1st 7 | - 2nd 8 | - 3rd 9 | - 4th 10 | - 5th 11 | - 6th 12 | - 7th 13 | - 8th 14 | - 9th 15 | -------------------------------------------------------------------------------- /vale/styles/Grafana/GoogleLyHyphens.yml: -------------------------------------------------------------------------------- 1 | "action": 2 | "name": "edit" 3 | "params": 4 | - "regex" 5 | - "-" 6 | - " " 7 | "extends": "existence" 8 | "ignorecase": false 9 | "level": "error" 10 | "link": "https://developers.google.com/style/hyphens" 11 | "message": "'%s' doesn't need a hyphen." 12 | "nonword": true 13 | "tokens": 14 | - "\\b[^\\s-]+ly-\\w+\\b" 15 | -------------------------------------------------------------------------------- /vale/styles/Grafana/GoogleOptionalPlurals.yml: -------------------------------------------------------------------------------- 1 | "action": 2 | "name": "edit" 3 | "params": 4 | - "trim_right" 5 | - "(s)" 6 | "extends": "existence" 7 | "level": "error" 8 | "link": "https://developers.google.com/style/plurals-parentheses" 9 | "message": "Don't use plurals in parentheses such as in '%s'." 10 | "nonword": true 11 | "tokens": 12 | - "\\b\\w+\\(s\\)" 13 | -------------------------------------------------------------------------------- /vale/styles/Grafana/SelfManaged.yml: -------------------------------------------------------------------------------- 1 | extends: substitution 2 | message: | 3 | Use '%s' instead of '%s' when talking about Grafana deployment methods. 4 | link: https://grafana.com/docs/writers-toolkit/write/style-guide/word-list/#self-managed 5 | level: warning 6 | action: 7 | name: replace 8 | swap: 9 | self-hosted: self-managed 10 | "on-prem(?:ise)?": self-managed 11 | -------------------------------------------------------------------------------- /.vale.ini: -------------------------------------------------------------------------------- 1 | StylesPath = vale/styles 2 | 3 | MinAlertLevel = suggestion 4 | 5 | # You'll need to update the Grafana package to point to a local copy 6 | # of the grafana/writers-toolkit /vale directory to succesfully run the 7 | # vale sync command. 8 | Packages = Grafana, https://github.com/errata-ai/Hugo/releases/download/v0.2.0/Hugo.zip 9 | 10 | [*.{md}] 11 | BasedOnStyles = Grafana -------------------------------------------------------------------------------- /docs/sources/k6/next/javascript-api/k6-browser/frame/name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'name()' 3 | description: 'Browser module: frame.name() method' 4 | --- 5 | 6 | # name() 7 | 8 | This method returns the name of the frame. 9 | 10 | 11 | ### Returns 12 | 13 | | Type | Description | 14 | | -------- | ---------------------- | 15 | | `string` | The name of the frame. | 16 | -------------------------------------------------------------------------------- /docs/sources/k6/next/testing-guides/injecting-faults-with-xk6-disruptor/examples/demo-environment.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Interactive demo' 3 | weight: 03 4 | --- 5 | 6 | # Interactive demo 7 | 8 | Visit the [interactive demo environment in Killercoda](https://killercoda.com/grafana-xk6-disruptor/scenario/killercoda) and try the disruptor in a demo application without having to do any setup. 9 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.47.x/examples/bundling-and-transpilation.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Bundling and transpilation' 3 | redirect: 'https://github.com/k6io/k6-es6/' 4 | description: | 5 | Reference project demonstrating how to use webpack and babel to bundle 6 | node modules or transpile code to ES5.1+ for usage in k6 tests. 7 | weight: 18 8 | --- 9 | 10 | # Bundling and transpilation 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.47.x/testing-guides/injecting-faults-with-xk6-disruptor/examples/demo-environment.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Interactive demo' 3 | weight: 03 4 | --- 5 | 6 | # Interactive demo 7 | 8 | Visit the [interactive demo environment in Killercoda](https://killercoda.com/grafana-xk6-disruptor/scenario/killercoda) and try the disruptor in a demo application without having to do any setup. 9 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.48.x/examples/bundling-and-transpilation.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Bundling and transpilation' 3 | redirect: 'https://github.com/k6io/k6-es6/' 4 | description: | 5 | Reference project demonstrating how to use webpack and babel to bundle 6 | node modules or transpile code to ES5.1+ for usage in k6 tests. 7 | weight: 18 8 | --- 9 | 10 | # Bundling and transpilation 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.48.x/testing-guides/injecting-faults-with-xk6-disruptor/examples/demo-environment.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Interactive demo' 3 | weight: 03 4 | --- 5 | 6 | # Interactive demo 7 | 8 | Visit the [interactive demo environment in Killercoda](https://killercoda.com/grafana-xk6-disruptor/scenario/killercoda) and try the disruptor in a demo application without having to do any setup. 9 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.49.x/examples/bundling-and-transpilation.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Bundling and transpilation' 3 | redirect: 'https://github.com/k6io/k6-es6/' 4 | description: | 5 | Reference project demonstrating how to use webpack and babel to bundle 6 | node modules or transpile code to ES5.1+ for usage in k6 tests. 7 | weight: 18 8 | --- 9 | 10 | # Bundling and transpilation 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.49.x/testing-guides/injecting-faults-with-xk6-disruptor/examples/demo-environment.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Interactive demo' 3 | weight: 03 4 | --- 5 | 6 | # Interactive demo 7 | 8 | Visit the [interactive demo environment in Killercoda](https://killercoda.com/grafana-xk6-disruptor/scenario/killercoda) and try the disruptor in a demo application without having to do any setup. 9 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.50.x/examples/bundling-and-transpilation.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Bundling and transpilation' 3 | redirect: 'https://github.com/k6io/k6-es6/' 4 | description: | 5 | Reference project demonstrating how to use webpack and babel to bundle 6 | node modules or transpile code to ES5.1+ for usage in k6 tests. 7 | weight: 18 8 | --- 9 | 10 | # Bundling and transpilation 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.50.x/testing-guides/injecting-faults-with-xk6-disruptor/examples/demo-environment.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Interactive demo' 3 | weight: 03 4 | --- 5 | 6 | # Interactive demo 7 | 8 | Visit the [interactive demo environment in Killercoda](https://killercoda.com/grafana-xk6-disruptor/scenario/killercoda) and try the disruptor in a demo application without having to do any setup. 9 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.51.x/examples/bundling-and-transpilation.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Bundling and transpilation' 3 | redirect: 'https://github.com/k6io/k6-es6/' 4 | description: | 5 | Reference project demonstrating how to use webpack and babel to bundle 6 | node modules or transpile code to ES5.1+ for usage in k6 tests. 7 | weight: 18 8 | --- 9 | 10 | # Bundling and transpilation 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.51.x/testing-guides/injecting-faults-with-xk6-disruptor/examples/demo-environment.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Interactive demo' 3 | weight: 03 4 | --- 5 | 6 | # Interactive demo 7 | 8 | Visit the [interactive demo environment in Killercoda](https://killercoda.com/grafana-xk6-disruptor/scenario/killercoda) and try the disruptor in a demo application without having to do any setup. 9 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/examples/bundling-and-transpilation.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Bundling and transpilation' 3 | redirect: 'https://github.com/k6io/k6-es6/' 4 | description: | 5 | Reference project demonstrating how to use webpack and babel to bundle 6 | node modules or transpile code to ES5.1+ for usage in k6 tests. 7 | weight: 18 8 | --- 9 | 10 | # Bundling and transpilation 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/javascript-api/k6-browser/frame/name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'name()' 3 | description: 'Browser module: frame.name() method' 4 | --- 5 | 6 | # name() 7 | 8 | This method returns the name of the frame. 9 | 10 | 11 | ### Returns 12 | 13 | | Type | Description | 14 | | -------- | ---------------------- | 15 | | `string` | The name of the frame. | 16 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/testing-guides/injecting-faults-with-xk6-disruptor/examples/demo-environment.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Interactive demo' 3 | weight: 03 4 | --- 5 | 6 | # Interactive demo 7 | 8 | Visit the [interactive demo environment in Killercoda](https://killercoda.com/grafana-xk6-disruptor/scenario/killercoda) and try the disruptor in a demo application without having to do any setup. 9 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/javascript-api/k6-browser/frame/name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'name()' 3 | description: 'Browser module: frame.name() method' 4 | --- 5 | 6 | # name() 7 | 8 | This method returns the name of the frame. 9 | 10 | 11 | ### Returns 12 | 13 | | Type | Description | 14 | | -------- | ---------------------- | 15 | | `string` | The name of the frame. | 16 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/testing-guides/injecting-faults-with-xk6-disruptor/examples/demo-environment.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Interactive demo' 3 | weight: 03 4 | --- 5 | 6 | # Interactive demo 7 | 8 | Visit the [interactive demo environment in Killercoda](https://killercoda.com/grafana-xk6-disruptor/scenario/killercoda) and try the disruptor in a demo application without having to do any setup. 9 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/javascript-api/k6-browser/frame/name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'name()' 3 | description: 'Browser module: frame.name() method' 4 | --- 5 | 6 | # name() 7 | 8 | This method returns the name of the frame. 9 | 10 | 11 | ### Returns 12 | 13 | | Type | Description | 14 | | -------- | ---------------------- | 15 | | `string` | The name of the frame. | 16 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/testing-guides/injecting-faults-with-xk6-disruptor/examples/demo-environment.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Interactive demo' 3 | weight: 03 4 | --- 5 | 6 | # Interactive demo 7 | 8 | Visit the [interactive demo environment in Killercoda](https://killercoda.com/grafana-xk6-disruptor/scenario/killercoda) and try the disruptor in a demo application without having to do any setup. 9 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/javascript-api/k6-browser/frame/name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'name()' 3 | description: 'Browser module: frame.name() method' 4 | --- 5 | 6 | # name() 7 | 8 | This method returns the name of the frame. 9 | 10 | 11 | ### Returns 12 | 13 | | Type | Description | 14 | | -------- | ---------------------- | 15 | | `string` | The name of the frame. | 16 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/testing-guides/injecting-faults-with-xk6-disruptor/examples/demo-environment.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Interactive demo' 3 | weight: 03 4 | --- 5 | 6 | # Interactive demo 7 | 8 | Visit the [interactive demo environment in Killercoda](https://killercoda.com/grafana-xk6-disruptor/scenario/killercoda) and try the disruptor in a demo application without having to do any setup. 9 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/javascript-api/k6-browser/frame/name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'name()' 3 | description: 'Browser module: frame.name() method' 4 | --- 5 | 6 | # name() 7 | 8 | This method returns the name of the frame. 9 | 10 | 11 | ### Returns 12 | 13 | | Type | Description | 14 | | -------- | ---------------------- | 15 | | `string` | The name of the frame. | 16 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/testing-guides/injecting-faults-with-xk6-disruptor/examples/demo-environment.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Interactive demo' 3 | weight: 03 4 | --- 5 | 6 | # Interactive demo 7 | 8 | Visit the [interactive demo environment in Killercoda](https://killercoda.com/grafana-xk6-disruptor/scenario/killercoda) and try the disruptor in a demo application without having to do any setup. 9 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/javascript-api/k6-browser/frame/name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'name()' 3 | description: 'Browser module: frame.name() method' 4 | --- 5 | 6 | # name() 7 | 8 | This method returns the name of the frame. 9 | 10 | 11 | ### Returns 12 | 13 | | Type | Description | 14 | | -------- | ---------------------- | 15 | | `string` | The name of the frame. | 16 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/testing-guides/injecting-faults-with-xk6-disruptor/examples/demo-environment.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Interactive demo' 3 | weight: 03 4 | --- 5 | 6 | # Interactive demo 7 | 8 | Visit the [interactive demo environment in Killercoda](https://killercoda.com/grafana-xk6-disruptor/scenario/killercoda) and try the disruptor in a demo application without having to do any setup. 9 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/javascript-api/k6-browser/frame/name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'name()' 3 | description: 'Browser module: frame.name() method' 4 | --- 5 | 6 | # name() 7 | 8 | This method returns the name of the frame. 9 | 10 | 11 | ### Returns 12 | 13 | | Type | Description | 14 | | -------- | ---------------------- | 15 | | `string` | The name of the frame. | 16 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/testing-guides/injecting-faults-with-xk6-disruptor/examples/demo-environment.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Interactive demo' 3 | weight: 03 4 | --- 5 | 6 | # Interactive demo 7 | 8 | Visit the [interactive demo environment in Killercoda](https://killercoda.com/grafana-xk6-disruptor/scenario/killercoda) and try the disruptor in a demo application without having to do any setup. 9 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/javascript-api/k6-browser/frame/name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'name()' 3 | description: 'Browser module: frame.name() method' 4 | --- 5 | 6 | # name() 7 | 8 | This method returns the name of the frame. 9 | 10 | 11 | ### Returns 12 | 13 | | Type | Description | 14 | | -------- | ---------------------- | 15 | | `string` | The name of the frame. | 16 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/testing-guides/injecting-faults-with-xk6-disruptor/examples/demo-environment.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Interactive demo' 3 | weight: 03 4 | --- 5 | 6 | # Interactive demo 7 | 8 | Visit the [interactive demo environment in Killercoda](https://killercoda.com/grafana-xk6-disruptor/scenario/killercoda) and try the disruptor in a demo application without having to do any setup. 9 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/javascript-api/k6-browser/frame/name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'name()' 3 | description: 'Browser module: frame.name() method' 4 | --- 5 | 6 | # name() 7 | 8 | This method returns the name of the frame. 9 | 10 | 11 | ### Returns 12 | 13 | | Type | Description | 14 | | -------- | ---------------------- | 15 | | `string` | The name of the frame. | 16 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/testing-guides/injecting-faults-with-xk6-disruptor/examples/demo-environment.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Interactive demo' 3 | weight: 03 4 | --- 5 | 6 | # Interactive demo 7 | 8 | Visit the [interactive demo environment in Killercoda](https://killercoda.com/grafana-xk6-disruptor/scenario/killercoda) and try the disruptor in a demo application without having to do any setup. 9 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/javascript-api/k6-browser/frame/name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'name()' 3 | description: 'Browser module: frame.name() method' 4 | --- 5 | 6 | # name() 7 | 8 | This method returns the name of the frame. 9 | 10 | 11 | ### Returns 12 | 13 | | Type | Description | 14 | | -------- | ---------------------- | 15 | | `string` | The name of the frame. | 16 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/testing-guides/injecting-faults-with-xk6-disruptor/examples/demo-environment.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Interactive demo' 3 | weight: 03 4 | --- 5 | 6 | # Interactive demo 7 | 8 | Visit the [interactive demo environment in Killercoda](https://killercoda.com/grafana-xk6-disruptor/scenario/killercoda) and try the disruptor in a demo application without having to do any setup. 9 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/javascript-api/k6-browser/frame/name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'name()' 3 | description: 'Browser module: frame.name() method' 4 | --- 5 | 6 | # name() 7 | 8 | This method returns the name of the frame. 9 | 10 | 11 | ### Returns 12 | 13 | | Type | Description | 14 | | -------- | ---------------------- | 15 | | `string` | The name of the frame. | 16 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/testing-guides/injecting-faults-with-xk6-disruptor/examples/demo-environment.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Interactive demo' 3 | weight: 03 4 | --- 5 | 6 | # Interactive demo 7 | 8 | Visit the [interactive demo environment in Killercoda](https://killercoda.com/grafana-xk6-disruptor/scenario/killercoda) and try the disruptor in a demo application without having to do any setup. 9 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | .cache/ 2 | public/ 3 | node_modules/ 4 | docs/sources/k6/*/release-notes 5 | docs/sources/k6/get-started/run-cloud-tests-from-the-CLI.md 6 | docs/sources/k6/get-started/run-your-first-tests.md 7 | docs/sources/k6/*/using-k6/metrics/create-custom-metrics.md 8 | /docs/sources/k6/*/testing-guides/injecting-faults-with-xk6-disruptor/expose-your-application.md 9 | CONTRIBUTING_FILE_FORMAT.md -------------------------------------------------------------------------------- /docs/sources/k6/next/javascript-api/k6-experimental/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/experimental' 3 | description: 'k6 experimental APIs' 4 | weight: 07 5 | --- 6 | 7 | # k6/experimental 8 | 9 | {{< docs/shared source="k6" lookup="experimental-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-experimental.md" version="" >}} 12 | -------------------------------------------------------------------------------- /vale/styles/Grafana/Archives.yml: -------------------------------------------------------------------------------- 1 | extends: substitution 2 | level: suggestion 3 | link: https://developers.google.com/style/word-list#extract 4 | message: Use '%s' instead of '%s'. 5 | 6 | ignorecase: false 7 | 8 | action: 9 | name: replace 10 | swap: 11 | "[Uu]n(?:archive|compress|tar|zip)": extract 12 | unzip: extract 13 | "[Zz][Ii][Pp](?: file)?": archive|compressed file 14 | -------------------------------------------------------------------------------- /vale/styles/Grafana/DialogBox.yml: -------------------------------------------------------------------------------- 1 | extends: substitution 2 | level: warning 3 | message: Use '%s' rather than '%s'. 4 | link: https://grafana.com/docs/writers-toolkit/write/style-guide/word-list/#dialog-box 5 | 6 | ignorecase: false 7 | 8 | action: 9 | name: replace 10 | swap: 11 | dialog box appears: dialog box opens 12 | modal: dialog box 13 | "dialog(?! box)": dialog box 14 | -------------------------------------------------------------------------------- /vale/styles/config/scripts/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/grafana/writers-toolkit/vale/config/tests 2 | 3 | go 1.22.0 4 | 5 | require ( 6 | github.com/d5/tengo/v2 v2.17.0 // indirect 7 | github.com/davecgh/go-spew v1.1.1 // indirect 8 | github.com/pmezard/go-difflib v1.0.0 // indirect 9 | github.com/stretchr/testify v1.9.0 // indirect 10 | gopkg.in/yaml.v3 v3.0.1 // indirect 11 | ) 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/javascript-api/k6-experimental/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/experimental' 3 | description: 'k6 experimental APIs' 4 | weight: 07 5 | --- 6 | 7 | # k6/experimental 8 | 9 | {{< docs/shared source="k6" lookup="experimental-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-experimental.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/javascript-api/k6-experimental/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/experimental' 3 | description: 'k6 experimental APIs' 4 | weight: 07 5 | --- 6 | 7 | # k6/experimental 8 | 9 | {{< docs/shared source="k6" lookup="experimental-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-experimental.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/javascript-api/k6-experimental/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/experimental' 3 | description: 'k6 experimental APIs' 4 | weight: 07 5 | --- 6 | 7 | # k6/experimental 8 | 9 | {{< docs/shared source="k6" lookup="experimental-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-experimental.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/javascript-api/k6-experimental/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/experimental' 3 | description: 'k6 experimental APIs' 4 | weight: 07 5 | --- 6 | 7 | # k6/experimental 8 | 9 | {{< docs/shared source="k6" lookup="experimental-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-experimental.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/javascript-api/k6-experimental/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/experimental' 3 | description: 'k6 experimental APIs' 4 | weight: 07 5 | --- 6 | 7 | # k6/experimental 8 | 9 | {{< docs/shared source="k6" lookup="experimental-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-experimental.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/javascript-api/k6-experimental/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/experimental' 3 | description: 'k6 experimental APIs' 4 | weight: 07 5 | --- 6 | 7 | # k6/experimental 8 | 9 | {{< docs/shared source="k6" lookup="experimental-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-experimental.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/javascript-api/k6-experimental/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/experimental' 3 | description: 'k6 experimental APIs' 4 | weight: 07 5 | --- 6 | 7 | # k6/experimental 8 | 9 | {{< docs/shared source="k6" lookup="experimental-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-experimental.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/javascript-api/k6-experimental/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/experimental' 3 | description: 'k6 experimental APIs' 4 | weight: 07 5 | --- 6 | 7 | # k6/experimental 8 | 9 | {{< docs/shared source="k6" lookup="experimental-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-experimental.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/javascript-api/k6-experimental/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/experimental' 3 | description: 'k6 experimental APIs' 4 | weight: 07 5 | --- 6 | 7 | # k6/experimental 8 | 9 | {{< docs/shared source="k6" lookup="experimental-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-experimental.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/javascript-api/k6-experimental/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/experimental' 3 | description: 'k6 experimental APIs' 4 | weight: 07 5 | --- 6 | 7 | # k6/experimental 8 | 9 | {{< docs/shared source="k6" lookup="experimental-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-experimental.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/javascript-api/k6-experimental/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/experimental' 3 | description: 'k6 experimental APIs' 4 | weight: 07 5 | --- 6 | 7 | # k6/experimental 8 | 9 | {{< docs/shared source="k6" lookup="experimental-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-experimental.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/next/javascript-api/init-context/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Init context' 3 | description: 'The init context (aka "init code") is code in the global context that has access to a few functions not accessible during main script execution.' 4 | weight: 01 5 | --- 6 | 7 | # Init context 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/init-context.md" version="" >}} 10 | -------------------------------------------------------------------------------- /vale/styles/Grafana/AltText.yml: -------------------------------------------------------------------------------- 1 | extends: script 2 | message: All images must have alt text. 3 | link: https://grafana.com/docs/writers-toolkit/write/image-guidelines/#alt-text 4 | scope: raw 5 | script: | 6 | text := import("text") 7 | matches := [] 8 | for match in text.re_find(`!\[\]\(.*?\)`, scope, -1) { 9 | matches = append(matches, {begin: match[0].begin, end: match[0].end}) 10 | } 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.49.x/misc/release-notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Release notes 3 | redirect: 'https://github.com/grafana/k6/releases' 4 | weight: 06 5 | --- 6 | 7 | # Release notes 8 | 9 | You can find the k6 release notes in the k6 GitHub repository on the [Releases page](https://github.com/grafana/k6/releases), and the "[release notes](https://github.com/grafana/k6/tree/master/release%20notes)" folder. 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.50.x/misc/release-notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Release notes 3 | redirect: 'https://github.com/grafana/k6/releases' 4 | weight: 06 5 | --- 6 | 7 | # Release notes 8 | 9 | You can find the k6 release notes in the k6 GitHub repository on the [Releases page](https://github.com/grafana/k6/releases), and the "[release notes](https://github.com/grafana/k6/tree/master/release%20notes)" folder. 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.51.x/misc/release-notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Release notes 3 | redirect: 'https://github.com/grafana/k6/releases' 4 | weight: 06 5 | --- 6 | 7 | # Release notes 8 | 9 | You can find the k6 release notes in the k6 GitHub repository on the [Releases page](https://github.com/grafana/k6/releases), and the "[release notes](https://github.com/grafana/k6/tree/master/release%20notes)" folder. 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/javascript-api/init-context/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Init context' 3 | description: 'The init context (aka "init code") is code in the global context that has access to a few functions not accessible during main script execution.' 4 | weight: 01 5 | --- 6 | 7 | # Init context 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/init-context.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/javascript-api/init-context/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Init context' 3 | description: 'The init context (aka "init code") is code in the global context that has access to a few functions not accessible during main script execution.' 4 | weight: 01 5 | --- 6 | 7 | # Init context 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/init-context.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/javascript-api/init-context/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Init context' 3 | description: 'The init context (aka "init code") is code in the global context that has access to a few functions not accessible during main script execution.' 4 | weight: 01 5 | --- 6 | 7 | # Init context 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/init-context.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/javascript-api/init-context/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Init context' 3 | description: 'The init context (aka "init code") is code in the global context that has access to a few functions not accessible during main script execution.' 4 | weight: 01 5 | --- 6 | 7 | # Init context 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/init-context.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/javascript-api/init-context/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Init context' 3 | description: 'The init context (aka "init code") is code in the global context that has access to a few functions not accessible during main script execution.' 4 | weight: 01 5 | --- 6 | 7 | # Init context 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/init-context.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/javascript-api/init-context/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Init context' 3 | description: 'The init context (aka "init code") is code in the global context that has access to a few functions not accessible during main script execution.' 4 | weight: 01 5 | --- 6 | 7 | # Init context 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/init-context.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/javascript-api/init-context/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Init context' 3 | description: 'The init context (aka "init code") is code in the global context that has access to a few functions not accessible during main script execution.' 4 | weight: 01 5 | --- 6 | 7 | # Init context 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/init-context.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/javascript-api/init-context/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Init context' 3 | description: 'The init context (aka "init code") is code in the global context that has access to a few functions not accessible during main script execution.' 4 | weight: 01 5 | --- 6 | 7 | # Init context 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/init-context.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/javascript-api/init-context/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Init context' 3 | description: 'The init context (aka "init code") is code in the global context that has access to a few functions not accessible during main script execution.' 4 | weight: 01 5 | --- 6 | 7 | # Init context 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/init-context.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/javascript-api/init-context/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Init context' 3 | description: 'The init context (aka "init code") is code in the global context that has access to a few functions not accessible during main script execution.' 4 | weight: 01 5 | --- 6 | 7 | # Init context 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/init-context.md" version="" >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/javascript-api/init-context/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Init context' 3 | description: 'The init context (aka "init code") is code in the global context that has access to a few functions not accessible during main script execution.' 4 | weight: 01 5 | --- 6 | 7 | # Init context 8 | 9 | {{< docs/shared source="k6" lookup="javascript-api/init-context.md" version="" >}} 10 | -------------------------------------------------------------------------------- /vale/styles/Grafana/GoogleFirstPerson.yml: -------------------------------------------------------------------------------- 1 | "extends": "existence" 2 | "ignorecase": true 3 | "level": "warning" 4 | "link": "https://developers.google.com/style/pronouns#personal-pronouns" 5 | "message": "Avoid first-person pronouns such as '%s'." 6 | "nonword": true 7 | "tokens": 8 | - "(?:^|\\s)I\\s" 9 | - "(?:^|\\s)I,\\s" 10 | - "\\bI'm\\b" 11 | - "\\bme\\b" 12 | - "\\bmy\\b" 13 | - "\\bmine\\b" 14 | -------------------------------------------------------------------------------- /vale/styles/Grafana/Relref.yml: -------------------------------------------------------------------------------- 1 | extends: script 2 | scope: raw 3 | level: error 4 | link: https://grafana.com/docs/writers-toolkit/write/links/ 5 | message: | 6 | Don't use the relref shortcode for any links as they don't follow redirects and have confusing semantics. 7 | 8 | Instead use one of the links described in [links](https://grafana.com/docs/writers-toolkit/write/links/). 9 | script: Relref.tengo 10 | -------------------------------------------------------------------------------- /vale/styles/Grafana/README.yml: -------------------------------------------------------------------------------- 1 | extends: substitution 2 | message: Use '%s' instead of '%s' unless you're referring to a specific file which has that spelling. 3 | link: https://grafana.com/docs/writers-toolkit/write/style-guide/word-list/#readme 4 | level: warning 5 | ignorecase: false 6 | action: 7 | name: replace 8 | swap: 9 | '[Rr]eadme\.md': README.md 10 | "[Rr]eadme": README 11 | "[Rr]eadmes": READMEs 12 | -------------------------------------------------------------------------------- /docs/sources/k6/next/shared/crypto/supported-key-methods-formats.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: webcrypto/supported key methods formats 3 | --- 4 | 5 | - `ECDH` and `ECDSA` algorithms have support for `pkcs8`, `spki`, `raw` and `jwk` formats. 6 | - `RSA-OAEP`, `RSASSA-PKCS1-v1_5` and `RSA-PSS` algorithms have support for `pkcs8`, `spki` and `jwk` formats. 7 | - `AES-*` and `HMAC` algorithms have currently support for `raw` and `jwk` formats. 8 | -------------------------------------------------------------------------------- /vale/styles/config/scripts/tengo.go: -------------------------------------------------------------------------------- 1 | package test 2 | 3 | func mustParseMatches(a []interface{}) []map[string]int { 4 | matches := []map[string]int{} 5 | 6 | for _, i := range a { 7 | m, _ := i.(map[string]any) 8 | match := map[string]int{ 9 | "begin": int(m["begin"].(int64)), 10 | "end": int(m["end"].(int64)), 11 | } 12 | 13 | matches = append(matches, match) 14 | } 15 | 16 | return matches 17 | } 18 | -------------------------------------------------------------------------------- /docs/sources/k6/next/javascript-api/k6-crypto/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/crypto' 3 | description: 'The k6/crypto module provides common hashing functionality available in the GoLang crypto.' 4 | weight: 03 5 | --- 6 | 7 | # k6/crypto 8 | 9 | {{< docs/shared source="k6" lookup="crypto-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-crypto.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/next/shared/extension.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Extension module admonition 3 | --- 4 | 5 | {{< admonition type="note">}} 6 | 7 | This module is implemented as an official extension and is available natively in k6, requiring no additional installation or build steps. Refer to the [extensions documentation](/docs/k6//extensions/explore) for available extensions and details. 8 | 9 | {{< /admonition >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/next/shared/webcrypto/supported-key-methods-formats.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: webcrypto/supported key methods formats 3 | --- 4 | 5 | - `ECDH` and `ECDSA` algorithms have support for `pkcs8`, `spki`, `raw` and `jwk` formats. 6 | - `RSA-OAEP`, `RSASSA-PKCS1-v1_5` and `RSA-PSS` algorithms have support for `pkcs8`, `spki` and `jwk` formats. 7 | - `AES-*` and `HMAC` algorithms have currently support for `raw` and `jwk` formats. 8 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/shared/webcrypto/supported-key-methods-formats.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: webcrypto/supported key methods formats 3 | --- 4 | 5 | - `ECDH` and `ECDSA` algorithms have support for `pkcs8`, `spki`, `raw` and `jwk` formats. 6 | - `RSA-OAEP`, `RSASSA-PKCS1-v1_5` and `RSA-PSS` algorithms have support for `pkcs8`, `spki` and `jwk` formats. 7 | - `AES-*` and `HMAC` algorithms have currently support for `raw` and `jwk` formats. 8 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/shared/webcrypto/supported-key-methods-formats.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: webcrypto/supported key methods formats 3 | --- 4 | 5 | - `ECDH` and `ECDSA` algorithms have support for `pkcs8`, `spki`, `raw` and `jwk` formats. 6 | - `RSA-OAEP`, `RSASSA-PKCS1-v1_5` and `RSA-PSS` algorithms have support for `pkcs8`, `spki` and `jwk` formats. 7 | - `AES-*` and `HMAC` algorithms have currently support for `raw` and `jwk` formats. 8 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/shared/webcrypto/supported-key-methods-formats.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: webcrypto/supported key methods formats 3 | --- 4 | 5 | - `ECDH` and `ECDSA` algorithms have support for `pkcs8`, `spki`, `raw` and `jwk` formats. 6 | - `RSA-OAEP`, `RSASSA-PKCS1-v1_5` and `RSA-PSS` algorithms have support for `pkcs8`, `spki` and `jwk` formats. 7 | - `AES-*` and `HMAC` algorithms have currently support for `raw` and `jwk` formats. 8 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/shared/crypto/supported-key-methods-formats.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: webcrypto/supported key methods formats 3 | --- 4 | 5 | - `ECDH` and `ECDSA` algorithms have support for `pkcs8`, `spki`, `raw` and `jwk` formats. 6 | - `RSA-OAEP`, `RSASSA-PKCS1-v1_5` and `RSA-PSS` algorithms have support for `pkcs8`, `spki` and `jwk` formats. 7 | - `AES-*` and `HMAC` algorithms have currently support for `raw` and `jwk` formats. 8 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/shared/webcrypto/supported-key-methods-formats.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: webcrypto/supported key methods formats 3 | --- 4 | 5 | - `ECDH` and `ECDSA` algorithms have support for `pkcs8`, `spki`, `raw` and `jwk` formats. 6 | - `RSA-OAEP`, `RSASSA-PKCS1-v1_5` and `RSA-PSS` algorithms have support for `pkcs8`, `spki` and `jwk` formats. 7 | - `AES-*` and `HMAC` algorithms have currently support for `raw` and `jwk` formats. 8 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/shared/crypto/supported-key-methods-formats.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: webcrypto/supported key methods formats 3 | --- 4 | 5 | - `ECDH` and `ECDSA` algorithms have support for `pkcs8`, `spki`, `raw` and `jwk` formats. 6 | - `RSA-OAEP`, `RSASSA-PKCS1-v1_5` and `RSA-PSS` algorithms have support for `pkcs8`, `spki` and `jwk` formats. 7 | - `AES-*` and `HMAC` algorithms have currently support for `raw` and `jwk` formats. 8 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/shared/webcrypto/supported-key-methods-formats.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: webcrypto/supported key methods formats 3 | --- 4 | 5 | - `ECDH` and `ECDSA` algorithms have support for `pkcs8`, `spki`, `raw` and `jwk` formats. 6 | - `RSA-OAEP`, `RSASSA-PKCS1-v1_5` and `RSA-PSS` algorithms have support for `pkcs8`, `spki` and `jwk` formats. 7 | - `AES-*` and `HMAC` algorithms have currently support for `raw` and `jwk` formats. 8 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/shared/crypto/supported-key-methods-formats.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: webcrypto/supported key methods formats 3 | --- 4 | 5 | - `ECDH` and `ECDSA` algorithms have support for `pkcs8`, `spki`, `raw` and `jwk` formats. 6 | - `RSA-OAEP`, `RSASSA-PKCS1-v1_5` and `RSA-PSS` algorithms have support for `pkcs8`, `spki` and `jwk` formats. 7 | - `AES-*` and `HMAC` algorithms have currently support for `raw` and `jwk` formats. 8 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/shared/webcrypto/supported-key-methods-formats.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: webcrypto/supported key methods formats 3 | --- 4 | 5 | - `ECDH` and `ECDSA` algorithms have support for `pkcs8`, `spki`, `raw` and `jwk` formats. 6 | - `RSA-OAEP`, `RSASSA-PKCS1-v1_5` and `RSA-PSS` algorithms have support for `pkcs8`, `spki` and `jwk` formats. 7 | - `AES-*` and `HMAC` algorithms have currently support for `raw` and `jwk` formats. 8 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/shared/crypto/supported-key-methods-formats.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: webcrypto/supported key methods formats 3 | --- 4 | 5 | - `ECDH` and `ECDSA` algorithms have support for `pkcs8`, `spki`, `raw` and `jwk` formats. 6 | - `RSA-OAEP`, `RSASSA-PKCS1-v1_5` and `RSA-PSS` algorithms have support for `pkcs8`, `spki` and `jwk` formats. 7 | - `AES-*` and `HMAC` algorithms have currently support for `raw` and `jwk` formats. 8 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/shared/webcrypto/supported-key-methods-formats.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: webcrypto/supported key methods formats 3 | --- 4 | 5 | - `ECDH` and `ECDSA` algorithms have support for `pkcs8`, `spki`, `raw` and `jwk` formats. 6 | - `RSA-OAEP`, `RSASSA-PKCS1-v1_5` and `RSA-PSS` algorithms have support for `pkcs8`, `spki` and `jwk` formats. 7 | - `AES-*` and `HMAC` algorithms have currently support for `raw` and `jwk` formats. 8 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/shared/crypto/supported-key-methods-formats.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: webcrypto/supported key methods formats 3 | --- 4 | 5 | - `ECDH` and `ECDSA` algorithms have support for `pkcs8`, `spki`, `raw` and `jwk` formats. 6 | - `RSA-OAEP`, `RSASSA-PKCS1-v1_5` and `RSA-PSS` algorithms have support for `pkcs8`, `spki` and `jwk` formats. 7 | - `AES-*` and `HMAC` algorithms have currently support for `raw` and `jwk` formats. 8 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/shared/extension.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Extension module admonition 3 | --- 4 | 5 | {{< admonition type="note">}} 6 | 7 | This module is implemented as an official extension and is available natively in k6, requiring no additional installation or build steps. Refer to the [extensions documentation](/docs/k6//extensions/explore) for available extensions and details. 8 | 9 | {{< /admonition >}} 10 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/shared/webcrypto/supported-key-methods-formats.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: webcrypto/supported key methods formats 3 | --- 4 | 5 | - `ECDH` and `ECDSA` algorithms have support for `pkcs8`, `spki`, `raw` and `jwk` formats. 6 | - `RSA-OAEP`, `RSASSA-PKCS1-v1_5` and `RSA-PSS` algorithms have support for `pkcs8`, `spki` and `jwk` formats. 7 | - `AES-*` and `HMAC` algorithms have currently support for `raw` and `jwk` formats. 8 | -------------------------------------------------------------------------------- /vale/styles/Grafana/DropDown.yml: -------------------------------------------------------------------------------- 1 | extends: substitution 2 | level: suggestion 3 | link: https://grafana.com/docs/writers-toolkit/write/style-guide/word-list/#drop-down 4 | message: | 5 | Use '%s' instead of '%s'. 6 | 7 | Use drop-down as a modifier rather than as a standalone noun. For example: _drop-down menu_. 8 | 9 | ignorecase: false 10 | 11 | action: 12 | name: replace 13 | swap: 14 | "drop ?down": drop-down 15 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/javascript-api/k6-crypto/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/crypto' 3 | description: 'The k6/crypto module provides common hashing functionality available in the GoLang crypto.' 4 | weight: 03 5 | --- 6 | 7 | # k6/crypto 8 | 9 | {{< docs/shared source="k6" lookup="crypto-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-crypto.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/javascript-api/k6-crypto/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/crypto' 3 | description: 'The k6/crypto module provides common hashing functionality available in the GoLang crypto.' 4 | weight: 03 5 | --- 6 | 7 | # k6/crypto 8 | 9 | {{< docs/shared source="k6" lookup="crypto-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-crypto.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/javascript-api/k6-crypto/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/crypto' 3 | description: 'The k6/crypto module provides common hashing functionality available in the GoLang crypto.' 4 | weight: 03 5 | --- 6 | 7 | # k6/crypto 8 | 9 | {{< docs/shared source="k6" lookup="crypto-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-crypto.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/javascript-api/k6-crypto/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/crypto' 3 | description: 'The k6/crypto module provides common hashing functionality available in the GoLang crypto.' 4 | weight: 03 5 | --- 6 | 7 | # k6/crypto 8 | 9 | {{< docs/shared source="k6" lookup="crypto-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-crypto.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/javascript-api/k6-crypto/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/crypto' 3 | description: 'The k6/crypto module provides common hashing functionality available in the GoLang crypto.' 4 | weight: 03 5 | --- 6 | 7 | # k6/crypto 8 | 9 | {{< docs/shared source="k6" lookup="crypto-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-crypto.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/javascript-api/k6-crypto/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/crypto' 3 | description: 'The k6/crypto module provides common hashing functionality available in the GoLang crypto.' 4 | weight: 03 5 | --- 6 | 7 | # k6/crypto 8 | 9 | {{< docs/shared source="k6" lookup="crypto-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-crypto.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/javascript-api/k6-crypto/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/crypto' 3 | description: 'The k6/crypto module provides common hashing functionality available in the GoLang crypto.' 4 | weight: 03 5 | --- 6 | 7 | # k6/crypto 8 | 9 | {{< docs/shared source="k6" lookup="crypto-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-crypto.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/javascript-api/k6-crypto/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/crypto' 3 | description: 'The k6/crypto module provides common hashing functionality available in the GoLang crypto.' 4 | weight: 03 5 | --- 6 | 7 | # k6/crypto 8 | 9 | {{< docs/shared source="k6" lookup="crypto-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-crypto.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/javascript-api/k6-crypto/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/crypto' 3 | description: 'The k6/crypto module provides common hashing functionality available in the GoLang crypto.' 4 | weight: 03 5 | --- 6 | 7 | # k6/crypto 8 | 9 | {{< docs/shared source="k6" lookup="crypto-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-crypto.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/javascript-api/k6-crypto/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/crypto' 3 | description: 'The k6/crypto module provides common hashing functionality available in the GoLang crypto.' 4 | weight: 03 5 | --- 6 | 7 | # k6/crypto 8 | 9 | {{< docs/shared source="k6" lookup="crypto-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-crypto.md" version="" >}} 12 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/javascript-api/k6-crypto/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'k6/crypto' 3 | description: 'The k6/crypto module provides common hashing functionality available in the GoLang crypto.' 4 | weight: 03 5 | --- 6 | 7 | # k6/crypto 8 | 9 | {{< docs/shared source="k6" lookup="crypto-module.md" version="" >}} 10 | 11 | {{< docs/shared source="k6" lookup="javascript-api/k6-crypto.md" version="" >}} 12 | -------------------------------------------------------------------------------- /vale/styles/Grafana/AmazonCloudWatch.yml: -------------------------------------------------------------------------------- 1 | extends: substitution 2 | level: warning 3 | link: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/WhatIsCloudWatch.html 4 | message: Use '%s' instead of '%s'. 5 | 6 | action: 7 | name: replace 8 | swap: 9 | AWS CloudWatch: Amazon CloudWatch 10 | aws CloudWatch: Amazon CloudWatch 11 | Cloudwatch: CloudWatch 12 | cloudwatch: CloudWatch 13 | cloudWatch: CloudWatch 14 | -------------------------------------------------------------------------------- /vale/styles/Grafana/GoogleHeadingPunctuation.yml: -------------------------------------------------------------------------------- 1 | "action": 2 | "name": "edit" 3 | "params": 4 | - "trim_right" 5 | - "." 6 | "extends": "existence" 7 | "level": "warning" 8 | "link": "https://developers.google.com/style/capitalization#capitalization-in-titles-and-headings" 9 | "message": "Don't put a period at the end of a heading." 10 | "nonword": true 11 | "scope": "heading" 12 | "tokens": 13 | - "[a-z0-9][.]\\s*$" 14 | -------------------------------------------------------------------------------- /vale/styles/Grafana/Paragraphs.yml: -------------------------------------------------------------------------------- 1 | extends: script 2 | scope: raw 3 | level: error 4 | link: https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-br-element 5 | message: | 6 | br elements must be used only for line breaks that are actually part of the content, as in poems or addresses. 7 | 8 | In tables, instead of br elements, use p for paragraphs, and ul or ol for list items. 9 | script: Paragraphs.tengo 10 | -------------------------------------------------------------------------------- /vale/styles/.vale-config/1-Hugo.ini: -------------------------------------------------------------------------------- 1 | [*.md] 2 | # Exclude `{{< ... >}}`, `{{% ... %}}`, [Who]({{< ... >}}) 3 | TokenIgnores = ({{[%<] .* [%>]}}.*?{{[%<] ?/.* [%>]}}), \ 4 | (\[.+\]\({{< .+ >}}\)), \ 5 | ({{[%<] .+ [%>]}}) 6 | 7 | # Exclude `{{< myshortcode `This is some HTML, ... >}}` 8 | BlockIgnores = (?sm)^({{[%<] [^{]*? [%>]}})\n$, \ 9 | (?s) *({{< highlight [^>]* ?>}}.*?{{< ?/ ?highlight >}}), \ 10 | ({{[%<] .+ [%>]}}) 11 | -------------------------------------------------------------------------------- /vale/styles/Grafana/CHANGELOG.yml: -------------------------------------------------------------------------------- 1 | extends: substitution 2 | message: Use '%s' instead of '%s' unless you're referring to a specific file which has that spelling. 3 | link: https://grafana.com/docs/writers-toolkit/write/style-guide/word-list/#changelog 4 | level: warning 5 | ignorecase: false 6 | action: 7 | name: replace 8 | swap: 9 | '[Cc]hangelog\.md': CHANGELOG.md 10 | "[Cc]hangelog": CHANGELOG 11 | "[Cc]hangelogs": CHANGELOGs 12 | -------------------------------------------------------------------------------- /vale/styles/Grafana/Quickstart.yml: -------------------------------------------------------------------------------- 1 | extends: substitution 2 | message: Use the compound adjective '%s' without a hyphen instead of '%s' whether the noun is implied or explicit. For example, you can use _quickstart guide_ or just _quickstart_. 3 | link: https://grafana.com/docs/writers-toolkit/write/style-guide/word-list/#quickstart 4 | level: warning 5 | ignorecase: false 6 | action: 7 | name: replace 8 | swap: 9 | "quick start": quickstart 10 | -------------------------------------------------------------------------------- /vale/styles/Grafana/AndOr.yml: -------------------------------------------------------------------------------- 1 | extends: existence 2 | level: warning 3 | link: https://developers.google.com/style/slashes#and-or 4 | message: | 5 | Avoid writing and/or except when space is limited, such as in tables. 6 | 7 | Often, 'and' implies 'or', so you don't need to write both words. 8 | 9 | If you need to specify both in your content, write something like "You can export raw events, processed events, or both." 10 | tokens: 11 | - and/or 12 | -------------------------------------------------------------------------------- /vale/styles/Grafana/ReferTo.yml: -------------------------------------------------------------------------------- 1 | extends: substitution 2 | message: When linking in Markdown, use '%s' instead of '%s'. 3 | link: https://grafana.com/docs/writers-toolkit/write/style-guide/style-conventions/#links-and-references 4 | level: error 5 | ignorecase: false 6 | action: 7 | name: replace 8 | scope: raw 9 | swap: 10 | "Check out \\[": "Refer to [" 11 | "See \\[": "Refer to [" 12 | "check out \\[": "refer to [" 13 | "see \\[": "refer to [" 14 | -------------------------------------------------------------------------------- /docs/sources/k6/next/javascript-api/k6-browser/frame/title.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'title()' 3 | description: 'Browser module: frame.title method' 4 | --- 5 | 6 | # title() 7 | 8 | Returns the frame's title. 9 | 10 | ### Returns 11 | 12 | | Type | Description | 13 | | ----------------- | ----------------------------------------------- | 14 | | `Promise` | A Promise that fulfills with the frame's title. | 15 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.0.x/javascript-api/k6-browser/frame/title.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'title()' 3 | description: 'Browser module: frame.title method' 4 | --- 5 | 6 | # title() 7 | 8 | Returns the frame's title. 9 | 10 | ### Returns 11 | 12 | | Type | Description | 13 | | ----------------- | ----------------------------------------------- | 14 | | `Promise` | A Promise that fulfills with the frame's title. | 15 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.1.x/javascript-api/k6-browser/frame/title.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'title()' 3 | description: 'Browser module: frame.title method' 4 | --- 5 | 6 | # title() 7 | 8 | Returns the frame's title. 9 | 10 | ### Returns 11 | 12 | | Type | Description | 13 | | ----------------- | ----------------------------------------------- | 14 | | `Promise` | A Promise that fulfills with the frame's title. | 15 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.2.x/javascript-api/k6-browser/frame/title.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'title()' 3 | description: 'Browser module: frame.title method' 4 | --- 5 | 6 | # title() 7 | 8 | Returns the frame's title. 9 | 10 | ### Returns 11 | 12 | | Type | Description | 13 | | ----------------- | ----------------------------------------------- | 14 | | `Promise` | A Promise that fulfills with the frame's title. | 15 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.3.x/javascript-api/k6-browser/frame/title.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'title()' 3 | description: 'Browser module: frame.title method' 4 | --- 5 | 6 | # title() 7 | 8 | Returns the frame's title. 9 | 10 | ### Returns 11 | 12 | | Type | Description | 13 | | ----------------- | ----------------------------------------------- | 14 | | `Promise` | A Promise that fulfills with the frame's title. | 15 | -------------------------------------------------------------------------------- /docs/sources/k6/v1.4.x/javascript-api/k6-browser/frame/title.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'title()' 3 | description: 'Browser module: frame.title method' 4 | --- 5 | 6 | # title() 7 | 8 | Returns the frame's title. 9 | 10 | ### Returns 11 | 12 | | Type | Description | 13 | | ----------------- | ----------------------------------------------- | 14 | | `Promise` | A Promise that fulfills with the frame's title. | 15 | -------------------------------------------------------------------------------- /vale/styles/Grafana/CommandLinePrompts.yml: -------------------------------------------------------------------------------- 1 | extends: script 2 | scope: raw 3 | level: warning 4 | link: https://grafana.com/docs/writers-toolkit/write/style-guide/write-for-developers/#command-lines 5 | message: | 6 | Don't add `$` or `#` as prompts before commands so users can copy and paste them. 7 | 8 | Also, don't use `#` to include comments in commands. 9 | That explanation should be outside of the code block. 10 | script: CommandLinePrompts.tengo 11 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.52.x/javascript-api/k6-browser/frame/title.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'title()' 3 | description: 'Browser module: frame.title method' 4 | --- 5 | 6 | # title() 7 | 8 | Returns the frame's title. 9 | 10 | ### Returns 11 | 12 | | Type | Description | 13 | | ----------------- | ----------------------------------------------- | 14 | | `Promise` | A Promise that fulfills with the frame's title. | 15 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.53.x/javascript-api/k6-browser/frame/title.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'title()' 3 | description: 'Browser module: frame.title method' 4 | --- 5 | 6 | # title() 7 | 8 | Returns the frame's title. 9 | 10 | ### Returns 11 | 12 | | Type | Description | 13 | | ----------------- | ----------------------------------------------- | 14 | | `Promise` | A Promise that fulfills with the frame's title. | 15 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.54.x/javascript-api/k6-browser/frame/title.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'title()' 3 | description: 'Browser module: frame.title method' 4 | --- 5 | 6 | # title() 7 | 8 | Returns the frame's title. 9 | 10 | ### Returns 11 | 12 | | Type | Description | 13 | | ----------------- | ----------------------------------------------- | 14 | | `Promise` | A Promise that fulfills with the frame's title. | 15 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/javascript-api/k6-browser/frame/title.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'title()' 3 | description: 'Browser module: frame.title method' 4 | --- 5 | 6 | # title() 7 | 8 | Returns the frame's title. 9 | 10 | ### Returns 11 | 12 | | Type | Description | 13 | | ----------------- | ----------------------------------------------- | 14 | | `Promise` | A Promise that fulfills with the frame's title. | 15 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.56.x/javascript-api/k6-browser/frame/title.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'title()' 3 | description: 'Browser module: frame.title method' 4 | --- 5 | 6 | # title() 7 | 8 | Returns the frame's title. 9 | 10 | ### Returns 11 | 12 | | Type | Description | 13 | | ----------------- | ----------------------------------------------- | 14 | | `Promise` | A Promise that fulfills with the frame's title. | 15 | -------------------------------------------------------------------------------- /docs/sources/k6/v0.57.x/javascript-api/k6-browser/frame/title.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'title()' 3 | description: 'Browser module: frame.title method' 4 | --- 5 | 6 | # title() 7 | 8 | Returns the frame's title. 9 | 10 | ### Returns 11 | 12 | | Type | Description | 13 | | ----------------- | ----------------------------------------------- | 14 | | `Promise` | A Promise that fulfills with the frame's title. | 15 | -------------------------------------------------------------------------------- /vale/styles/Grafana/GoogleDateFormat.yml: -------------------------------------------------------------------------------- 1 | "extends": "existence" 2 | "ignorecase": true 3 | "level": "error" 4 | "link": "https://developers.google.com/style/dates-times" 5 | "message": "Use 'July 31, 2016' format, not '%s'." 6 | "nonword": true 7 | "tokens": 8 | - "\\d{1,2}(?:\\.|/)\\d{1,2}(?:\\.|/)\\d{4}" 9 | - "\\d{1,2} (?:Jan(?:uary)?|Feb(?:ruary)?|Mar(?:ch)?|Apr(?:il)|May|Jun(?:e)|Jul(?:y)|Aug(?:ust)|Sep(?:tember)?|Oct(?:ober)|Nov(?:ember)?|Dec(?:ember)?) \\d{4}" 10 | -------------------------------------------------------------------------------- /docs/sources/k6/next/shared/crypto-module.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: k6/crypto module admonition 3 | --- 4 | 5 | {{< admonition type="note" >}} 6 | 7 | A module with a better and standard API exists. 8 |
9 |
10 | The [crypto module](/docs/k6//javascript-api/crypto/) partially implements the [WebCrypto API](https://www.w3.org/TR/WebCryptoAPI/), supporting more features than [k6/crypto](/docs/k6//javascript-api/k6-crypto/). 11 | 12 | {{< /admonition >}} 13 | -------------------------------------------------------------------------------- /docs/sources/k6/next/using-k6-browser/recommended-practices/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Recommended practices' 3 | description: 'A list of different examples and recommended practices when working with the k6 browser module' 4 | weight: 350 5 | --- 6 | 7 | # Recommended practices 8 | 9 | This section presents some examples and recommended practices when working with the `k6 browser` module to leverage browser automation as part of your k6 tests. 10 | 11 | {{< section menuTitle="true">}} -------------------------------------------------------------------------------- /docs/sources/k6/v0.55.x/using-k6-browser/recommended-practices/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Recommended practices' 3 | description: 'A list of different examples and recommended practices when working with the k6 browser module' 4 | weight: 100 5 | --- 6 | 7 | # Recommended practices 8 | 9 | This section presents some examples and recommended practices when working with the `k6 browser` module to leverage browser automation as part of your k6 tests. 10 | 11 | {{< section menuTitle="true">}} --------------------------------------------------------------------------------