File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/data/markdown/translated-guides/en/02 Using k6 Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ excerpt: 'Define the HTTP requests and methods you want to use. k6 adds tags to
5
5
6
6
When testers create new load test, the first step is often to define the HTTP requests to test the system with.
7
7
8
- ## Making HTTP Requests
8
+ ## Make HTTP Requests {#making-http-requests}
9
9
10
- A simple GET request looks like this:
10
+ A GET request looks like this:
11
11
12
12
<CodeGroup labels={[ "http_get.js"] } lineNumbers={[ true] }>
13
13
@@ -21,7 +21,7 @@ export default function () {
21
21
22
22
</CodeGroup >
23
23
24
- For something slightly more complex, here's a POST request to authenticate on a service or site:
24
+ For something slightly more complex, this POST request authenticates on a service or site:
25
25
26
26
<CodeGroup labels={[ "http_post.js"] } lineNumbers={[ true] }>
27
27
@@ -107,7 +107,7 @@ Note how the `tags` object groups data.
107
107
108
108
</CodeGroup >
109
109
110
- ## URL Grouping
110
+ ## Group URLs under one tag {#url-grouping}
111
111
112
112
By default, tags have a ` name ` field that holds the value of the request URL.
113
113
If your test has dynamic URL paths, you might not want this behavior, which could bring a large number of unique URLs into the metrics stream.
You can’t perform that action at this time.
0 commit comments