Skip to content

Commit 681bb8e

Browse files
Minor lang trims to new output docs
- Avoid directional language - Write parameters in monospace - Prefer contractions to shorten text and make friendlier tone
1 parent e51fa26 commit 681bb8e

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

src/data/markdown/translated-guides/en/03 Results output/200 Real-time/00 Dynatrace.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,20 @@ title: 'Dynatrace'
33
excerpt: Send k6 output to Dynatrace to visualize load test results and correlate performance testing metrics in Dynatrace.
44
---
55

6-
Using the [Dynatrace k6 extension](https://github.com/Dynatrace/xk6-output-dynatrace) you can send metrics to [Dynatrace](https://www.dynatrace.com/). That allows visualizing and correlating performance testing metrics with other monitored metrics in Dynatrace.
6+
With the [Dynatrace k6 extension](https://github.com/Dynatrace/xk6-output-dynatrace),
7+
you can send visualize and correlate performance testing metrics with the other metrics that you monitor in Dynatrace.
78

89
## Build the k6 version
910

1011
<InstallationInstructions extensionUrl="github.com/Dynatrace/xk6-output-dynatrace"/>
1112

1213
## Run the test
1314

14-
Create a Dynatrace API token to send the data.
15+
Create a Dynatrace API token to send the data.
1516

1617
<Blockquote mod="attention">
17-
The Dynatrace API Token must have the scope name "metrics.ingest" (scope type "API v2").
18-
</Blockquote>
18+
The Dynatrace API Token must have the scope name "metrics.ingest" (scope type `API v2`).
19+
</Blockquote>
1920

2021
You can use the Dynatrace UI:
2122

@@ -38,20 +39,20 @@ export K6_DYNATRACE_APITOKEN=<Dynatrace API token>
3839
./k6 run script.js -o output-dynatrace
3940
```
4041

41-
You can now check the metrics in your Dynatrace environment, filtering for `k6`:
42+
Check the metrics in your Dynatrace environment, filtering for `k6`:
4243

4344
![Dynatrace Test result](./images/Dynatrace/dynatrace-k6-metrics.png)
4445

4546
![Dynatrace Test result](./images/Dynatrace/dynatrace-k6-test-result.png)
4647

4748
### Options
4849

49-
When streaming the k6 results to Dynatrace, you can configure the Dynatrace options below:
50+
When streaming the k6 results to Dynatrace, you can configure the following Dynatrace options:
5051

5152
| Name | Value |
5253
| ---------------------------------------- | ----------------------------------------------------------------------------------------------------------- |
5354
| `K6_DYNATRACE_APITOKEN` | Dynatrace API token to write the metrics. The token must have the scope `metrics.ingest API v2`. |
5455
| `K6_DYNATRACE_FLUSH_PERIOD` | Define how often metrics are sent to Dynatrace. The default value is 1 second. |
5556
| `K6_DYNATRACE_URL` | Dynatrace URL. The default value is `https://dynatrace.live.com`. |
5657
| `K6_DYNATRACE_INSECURE_SKIP_TLS_VERIFY` | If `true`, the HTTP client kips TLS verification on the endpoint. The default value is `true`. |
57-
| `K6_DYNATRACE_HEADER` | Pair of key/value headers to add to Dynatrace requests. |
58+
| `K6_DYNATRACE_HEADER` | Pair of key/value headers to add to Dynatrace requests. |

src/data/markdown/translated-guides/en/03 Results output/200 Real-time/00 Elasticsearch.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ Using the [Elasticsearch k6 extension](https://github.com/elastic/xk6-output-ela
1212

1313
## Run the test
1414

15-
Check that the Elasticsearch instance which will store the k6 metrics is running.
15+
Check that the Elasticsearch instance to store the k6 metrics is running.
1616

17-
If you are running on Elasticsearch cloud, use the previous k6 binary and run the test passing the cloud credentials as follows:
17+
If you're running on Elasticsearch cloud, use the previous k6 binary and run the test passing the cloud credentials as follows:
1818

1919
```bash
2020
# export cloud configuration
@@ -26,7 +26,7 @@ export K6_ELASTICSEARCH_PASSWORD=your-password-here
2626
./k6 run script.js -o output-elasticsearch
2727
```
2828

29-
k6 runs the test script and sends the metrics in real-time to Elasticsearch.
29+
k6 runs the test script and sends the metrics in real-time to Elasticsearch.
3030

3131
You can also send the metrics to a local Elasticsearch cluster:
3232

@@ -39,10 +39,11 @@ export K6_ELASTICSEARCH_URL=http://localhost:9200
3939
```
4040

4141
<Blockquote mod="attention">
42-
Security and self-signed certificates for non-cloud clusters are not yet supported
42+
Security and self-signed certificates for non-cloud clusters are not yet supported.
4343
</Blockquote>
4444

45-
You can now connect to Elasticsearch and query the [k6 metrics](/using-k6/metrics/) stored in the `k6-metrics` index. The example below uses an unsecured local Elasticsearch version `7.17.9`:
45+
You can now connect to Elasticsearch and query the [k6 metrics](/using-k6/metrics/) stored in the `k6-metrics` index.
46+
The following example uses an unsecured local Elasticsearch, version `7.17.9`:
4647

4748
```bash
4849
curl -XGET 'http://localhost:9200/k6-metrics/_search?pretty' -H 'Content-Type: application/json' -d'
@@ -73,4 +74,3 @@ Here is the full list of options that can be configured and passed to the extens
7374
| `K6_ELASTICSEARCH_URL` | Elasticsearch URL. |
7475
| `K6_ELASTICSEARCH_USER` | Elasticsearch username. |
7576
| `K6_ELASTICSEARCH_PASSWORD` | Elasticsearch password. |
76-

0 commit comments

Comments
 (0)