Skip to content

Commit 5d190f3

Browse files
heitortsergentinancgumus
authored andcommitted
Update file name, title, h1
1 parent 2b63a53 commit 5d190f3

File tree

5 files changed

+36
-41
lines changed

5 files changed

+36
-41
lines changed
Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: 'A guide on how to prevent the `too many time series` issue when us
44
weight: 05
55
---
66

7-
# Preventing too many time series issue
7+
# Prevent too many time series error
88

99
Modern websites are complex and make a large number of requests to function as intended by their developers. These requests no longer serve only content for display to the end user but also retrieve insights, analytics, advertisements, and cache-busting purposes. Such requests are usually generated dynamically and may contain frequently changing IDs, posing challenges when correlating and analyzing your k6 test results.
1010

@@ -29,14 +29,14 @@ export const options = {
2929
executor: 'shared-iterations',
3030
options: {
3131
browser: {
32-
type: 'chromium',
32+
type: 'chromium',
3333
},
3434
},
3535
},
3636
},
37-
}
37+
};
3838

39-
export default async function() {
39+
export default async function () {
4040
const page = await browser.newPage();
4141

4242
// Here, we set up an event listener using page.on('metric').
@@ -57,8 +57,8 @@ export default async function() {
5757
// When a method is specified, the metric must match both the URL pattern
5858
// and the method. If no method is provided, the pattern will match all
5959
// HTTP methods.
60-
{url: /^https:\/\/test\.k6\.io\/\?q=[0-9a-z]+$/, method: 'GET'},
61-
]
60+
{ url: /^https:\/\/test\.k6\.io\/\?q=[0-9a-z]+$/, method: 'GET' },
61+
],
6262
});
6363
});
6464

@@ -72,7 +72,6 @@ export default async function() {
7272
await page.close();
7373
}
7474
}
75-
7675
```
7776

78-
{{< /code >}}
77+
{{< /code >}}
Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
title: 'Preventing too many time series issue'
2+
title: 'Prevent too many time series error'
33
description: 'A guide on how to prevent the `too many time series` issue when using k6 browser.'
44
weight: 05
55
---
66

7-
# Preventing too many time series issue
7+
# Prevent too many time series error
88

99
Modern websites are complex and make a large number of requests to function as intended by their developers. These requests no longer serve only content for display to the end user but also retrieve insights, analytics, advertisements, and cache-busting purposes. Such requests are usually generated dynamically and may contain frequently changing IDs, posing challenges when correlating and analyzing your K6 test results.
1010

@@ -29,14 +29,14 @@ export const options = {
2929
executor: 'shared-iterations',
3030
options: {
3131
browser: {
32-
type: 'chromium',
32+
type: 'chromium',
3333
},
3434
},
3535
},
3636
},
37-
}
37+
};
3838

39-
export default async function() {
39+
export default async function () {
4040
const page = await browser.newPage();
4141

4242
// Here, we set up an event listener using page.on('metric').
@@ -57,8 +57,8 @@ export default async function() {
5757
// When a method is specified, the metric must match both the URL pattern
5858
// and the method. If no method is provided, the pattern will match all
5959
// HTTP methods.
60-
{url: /^https:\/\/test\.k6\.io\/\?q=[0-9a-z]+$/, method: 'GET'},
61-
]
60+
{ url: /^https:\/\/test\.k6\.io\/\?q=[0-9a-z]+$/, method: 'GET' },
61+
],
6262
});
6363
});
6464

@@ -72,7 +72,6 @@ export default async function() {
7272
await page.close();
7373
}
7474
}
75-
7675
```
7776

78-
{{< /code >}}
77+
{{< /code >}}
Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: 'A guide on how to prevent the `too many time series` issue when us
44
weight: 05
55
---
66

7-
# Preventing too many time series issue
7+
# Prevent too many time series error
88

99
Modern websites are complex and make a large number of requests to function as intended by their developers. These requests no longer serve only content for display to the end user but also retrieve insights, analytics, advertisements, and cache-busting purposes. Such requests are usually generated dynamically and may contain frequently changing IDs, posing challenges when correlating and analyzing your k6 test results.
1010

@@ -29,14 +29,14 @@ export const options = {
2929
executor: 'shared-iterations',
3030
options: {
3131
browser: {
32-
type: 'chromium',
32+
type: 'chromium',
3333
},
3434
},
3535
},
3636
},
37-
}
37+
};
3838

39-
export default async function() {
39+
export default async function () {
4040
const page = await browser.newPage();
4141

4242
// Here, we set up an event listener using page.on('metric').
@@ -57,8 +57,8 @@ export default async function() {
5757
// When a method is specified, the metric must match both the URL pattern
5858
// and the method. If no method is provided, the pattern will match all
5959
// HTTP methods.
60-
{url: /^https:\/\/test\.k6\.io\/\?q=[0-9a-z]+$/, method: 'GET'},
61-
]
60+
{ url: /^https:\/\/test\.k6\.io\/\?q=[0-9a-z]+$/, method: 'GET' },
61+
],
6262
});
6363
});
6464

@@ -72,7 +72,6 @@ export default async function() {
7272
await page.close();
7373
}
7474
}
75-
7675
```
7776

78-
{{< /code >}}
77+
{{< /code >}}
Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: 'A guide on how to prevent the `too many time series` issue when us
44
weight: 05
55
---
66

7-
# Preventing too many time series issue
7+
# Prevent too many time series error
88

99
Modern websites are complex and make a large number of requests to function as intended by their developers. These requests no longer serve only content for display to the end user but also retrieve insights, analytics, advertisements, and cache-busting purposes. Such requests are usually generated dynamically and may contain frequently changing IDs, posing challenges when correlating and analyzing your k6 test results.
1010

@@ -29,14 +29,14 @@ export const options = {
2929
executor: 'shared-iterations',
3030
options: {
3131
browser: {
32-
type: 'chromium',
32+
type: 'chromium',
3333
},
3434
},
3535
},
3636
},
37-
}
37+
};
3838

39-
export default async function() {
39+
export default async function () {
4040
const page = await browser.newPage();
4141

4242
// Here, we set up an event listener using page.on('metric').
@@ -57,8 +57,8 @@ export default async function() {
5757
// When a method is specified, the metric must match both the URL pattern
5858
// and the method. If no method is provided, the pattern will match all
5959
// HTTP methods.
60-
{url: /^https:\/\/test\.k6\.io\/\?q=[0-9a-z]+$/, method: 'GET'},
61-
]
60+
{ url: /^https:\/\/test\.k6\.io\/\?q=[0-9a-z]+$/, method: 'GET' },
61+
],
6262
});
6363
});
6464

@@ -72,7 +72,6 @@ export default async function() {
7272
await page.close();
7373
}
7474
}
75-
7675
```
7776

78-
{{< /code >}}
77+
{{< /code >}}
Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: 'A guide on how to prevent the `too many time series` issue when us
44
weight: 05
55
---
66

7-
# Preventing too many time series issue
7+
# Prevent too many time series error
88

99
Modern websites are complex and make a large number of requests to function as intended by their developers. These requests no longer serve only content for display to the end user but also retrieve insights, analytics, advertisements, and cache-busting purposes. Such requests are usually generated dynamically and may contain frequently changing IDs, posing challenges when correlating and analyzing your k6 test results.
1010

@@ -29,14 +29,14 @@ export const options = {
2929
executor: 'shared-iterations',
3030
options: {
3131
browser: {
32-
type: 'chromium',
32+
type: 'chromium',
3333
},
3434
},
3535
},
3636
},
37-
}
37+
};
3838

39-
export default async function() {
39+
export default async function () {
4040
const page = await browser.newPage();
4141

4242
// Here, we set up an event listener using page.on('metric').
@@ -57,8 +57,8 @@ export default async function() {
5757
// When a method is specified, the metric must match both the URL pattern
5858
// and the method. If no method is provided, the pattern will match all
5959
// HTTP methods.
60-
{url: /^https:\/\/test\.k6\.io\/\?q=[0-9a-z]+$/, method: 'GET'},
61-
]
60+
{ url: /^https:\/\/test\.k6\.io\/\?q=[0-9a-z]+$/, method: 'GET' },
61+
],
6262
});
6363
});
6464

@@ -72,7 +72,6 @@ export default async function() {
7272
await page.close();
7373
}
7474
}
75-
7675
```
7776

78-
{{< /code >}}
77+
{{< /code >}}

0 commit comments

Comments
 (0)