Skip to content

Commit bcc2cd6

Browse files
committed
Fix link to extensions community forum
1 parent eabe10e commit bcc2cd6

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/data/markdown/docs/07 extensions/01 Get started/04 Create/01 JavaScript Extensions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ $ go install go.k6.io/xk6/cmd/xk6@latest
3333
```
3434

3535
1. In the directory, make a Go file for your JavaScript extension.
36-
36+
3737
A simple JavaScript extension requires a struct that exposes methods called by the test script.
3838

3939
<!-- TODO: A better trivial example? A coin flip perhaps? -->
@@ -340,7 +340,7 @@ INFO[0000] Active VUs: 2, Iteration: 2, VU ID: 2, VU ID from runtime: 2 source=
340340
- Use the registry's [`NewMetric`](https://pkg.go.dev/go.k6.io/k6/metrics#Registry.NewMetric) method to create
341341
custom metrics; to emit them, use [`metrics.PushIfNotDone()`](https://pkg.go.dev/go.k6.io/k6/metrics#PushIfNotDone).
342342

343-
> Questions? Feel free to join the discussion on extensions in the [k6 Community Forum](https://community.grafana.com/c/extensions/).
343+
> Questions? Feel free to join the discussion on extensions in the [k6 Community Forum](https://community.grafana.com/c/grafana-k6/extensions/82).
344344
345345
Next, create an [Output extension](/extensions/get-started/create/output-extensions/) to publish test metrics
346346
to a destination not already supported by k6.

src/data/markdown/docs/07 extensions/01 Get started/04 Create/02 Output Extensions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,5 +242,5 @@ Your output should look something like this:
242242
- Use the [project template](https://github.com/grafana/xk6-output-template) as a starting point
243243
for your output extension.
244244

245-
> Questions? Feel free to join the discussion on extensions in the [k6 Community Forum](https://community.grafana.com/c/extensions/).
245+
> Questions? Feel free to join the discussion on extensions in the [k6 Community Forum](https://community.grafana.com/c/grafana-k6/extensions/82).
246246

src/data/markdown/docs/07 extensions/03 Guides/build-k6-using-docker.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ docker run --rm -e GOOS=windows -v "%cd%:/xk6" ^
4141

4242
</CodeGroup>
4343

44-
This creates a `k6` (or `k6.exe`) binary in the current working directory.
44+
This creates a `k6` (or `k6.exe`) binary in the current working directory.
4545

4646
To build the binary with concrete versions, see the example below (k6 `v0.45.1`, xk6-kafka `v0.19.1`, and xk6-output-influxdb `v0.4.1`):
4747

@@ -84,7 +84,7 @@ The example command line may look a bit intimidating at first, but let's focus o
8484
docker run --rm -u "$(id -u):$(id -g)" -v "${PWD}:/xk6"
8585
```
8686

87-
This tells Docker to run a new container from an image.
87+
This tells Docker to run a new container from an image.
8888
- `--rm` means the container will be destroyed once your build is completed.
8989
- `-u` specifies the user and group IDs of the account on the host machine. This is important for the `k6` file to have the same file permissions as the host user.
9090
- `-v` is required to mount the current working directory inside the container, so that the `k6` binary can be written to it.
@@ -168,5 +168,5 @@ k6.exe run my-script.js
168168
169169
## Encountering issues?
170170
171-
If you're having issues, search the [k6 Community Forum](https://community.grafana.com/c/extensions/).
171+
If you're having issues, search the [k6 Community Forum](https://community.grafana.com/c/grafana-k6/extensions/82).
172172
Someone may have had the same issue in the past.

0 commit comments

Comments
 (0)