Skip to content

Commit 936086a

Browse files
Fix; minor style improvements on https metrics doc
1 parent 556b391 commit 936086a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/data/markdown/translated-guides/en/02 Using k6/01 HTTP requests.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ excerpt: 'Define the HTTP requests and methods you want to use. k6 adds tags to
55

66
When testers create new load test, the first step is often to define the HTTP requests to test the system with.
77

8-
## Making HTTP Requests
8+
## Make HTTP Requests {#making-http-requests}
99

10-
A simple GET request looks like this:
10+
A GET request looks like this:
1111

1212
<CodeGroup labels={["http_get.js"]} lineNumbers={[true]}>
1313

@@ -21,7 +21,7 @@ export default function () {
2121

2222
</CodeGroup>
2323

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:
2525

2626
<CodeGroup labels={["http_post.js"]} lineNumbers={[true]}>
2727

@@ -107,7 +107,7 @@ Note how the `tags` object groups data.
107107

108108
</CodeGroup>
109109

110-
## URL Grouping
110+
## Group URLs under one tag {#url-grouping}
111111

112112
By default, tags have a `name` field that holds the value of the request URL.
113113
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.

0 commit comments

Comments
 (0)