Skip to content

Commit 260eff8

Browse files
committed
Proofread
1 parent b3051c2 commit 260eff8

2 files changed

Lines changed: 13 additions & 13 deletions

File tree

content/en/docs/refguide/runtime/monitoring-mendix-runtime.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ For that you need to do three things:
553553

554554
[//]: # (<!-- markdownlint-disable no-duplicate-heading -->)
555555

556-
### Example Response
556+
#### Example Response
557557

558558
```json
559559
{
@@ -579,7 +579,7 @@ If the `feedback` is not empty use the name of your current log subscriber in th
579579
{"action": "remove_log_subscriber", "params": {"name": "ConsoleLogSubscriber"}}
580580
```
581581

582-
### Example Response
582+
#### Example Response
583583

584584
```json
585585
{
@@ -590,7 +590,7 @@ If the `feedback` is not empty use the name of your current log subscriber in th
590590

591591
It is possible to have multiple log subscribers running simultaneously, if several log subscribers were created then each of them will be writing the same log lines.
592592

593-
### Request to Create New Log Subscriber in Json Format
593+
### Request to Create New Log Subscriber in JSON Format
594594

595595
```json
596596
{
@@ -607,7 +607,7 @@ It is possible to have multiple log subscribers running simultaneously, if sever
607607
}
608608
```
609609

610-
### Example Response
610+
#### Example Response
611611

612612
```json
613613
{
@@ -616,7 +616,7 @@ It is possible to have multiple log subscribers running simultaneously, if sever
616616
}
617617
```
618618

619-
This will write logs to standard output in Json format. If you need to add extra static fields to tag logs then you can add them into `tags`, in this example `ddtags` and `service` are added.
619+
This will write logs to standard output in JSON format. If you need to add extra static fields to tag logs then you can add them into `tags`, in this example `ddtags` and `service` are added.
620620
This configuration will produce logs similar to these:
621621

622622
```json
@@ -637,7 +637,7 @@ This configuration will produce logs similar to these:
637637
}
638638
```
639639

640-
### Example Response
640+
#### Example Response
641641

642642
```json
643643
{
@@ -650,7 +650,7 @@ This will write logs to standard output in simple text format.
650650

651651
[//]: # (<!-- markdownlint-enable no-duplicate-heading -->)
652652

653-
### Request to Create New Log Subscriber in Open Telemetry Format
653+
### Request to Create New Log Subscriber in Open Telemetry Format {#new-log-sub-opentelemetry}
654654

655655
```json
656656
{
@@ -663,7 +663,7 @@ This will write logs to standard output in simple text format.
663663
}
664664
```
665665

666-
### Example Response
666+
#### Example Response
667667

668668
```json
669669
{

content/en/docs/refguide/runtime/tracing-in-runtime.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ You can test the tracing using [Jaeger](https://www.jaegertracing.io/) or [Grafa
5454

5555
For Jaeger, you can use the all-in-one binary or Docker image. Jaeger will listen to endpoint `http://localhost:4318/v1/traces` by default.
5656

57-
For Grafana, you can use the all-in-one Docker image `grafana/otel-lgtm`. After starting it with below command it will listen to the endpoint `http://localhost:4318/v1/traces`.
57+
For Grafana, you can use the all-in-one Docker image `grafana/otel-lgtm`. After starting it with the following command, it will listen to the endpoint `http://localhost:4318/v1/traces`.
5858

5959
```
6060
docker run --name otel-grafana -d -p 3000:3000 -p 4317:4317 -p 4318:4318 grafana/otel-lgtm
@@ -69,7 +69,7 @@ The following settings are supported by the Mendix runtime. See [Configure the S
6969
You can configure the Java Agent through system properties which can be added to the **Extra JVM parameters** field (for example, `-Dotel.exporter.otlp.traces.endpoint`), or set through environment variables.
7070

7171
| Name | Description | Default |
72-
|------|-------------|---------|
72+
| ---- | ----------- | ------- |
7373
| `otel.service.name` | The name of the service. | `runtimelauncher` |
7474
| `otel.resource.attributes` | Extra resource attributes to include in every span. Example: `attribute1=value1,attribute2=value2` | |
7575
| `otel.traces.exporter` | Comma-separated list of span exporters. Supported values are: `otlp`, `console`, `logging-otlp`, and `none`. | `otlp` |
@@ -148,7 +148,7 @@ To use the OpenTelemetry Collector with Datadog, follow these steps:
148148

149149
## Include Metrics and Logs in OpenTelemetry
150150

151-
You can also collect metrics data (CPU load, memory, etc.) and logs with OpenTelemetry.
151+
You can also collect metrics data (CPU load, memory, etc.) and logs using OpenTelemetry.
152152

153-
* Please see [Metrics](/refguide/metrics/#opentelemetry) for a guide on how to setup Metrics with OpenTelemetry.
154-
* Please see [Monitoring Mendix Runtime](/refguide/monitoring-mendix-runtime/#request-to-create-new-log-subscriber-in-open-telemetry-format) for a guide on how to setup Logs with OpenTelemetry.
153+
* See the [OpenTelemetry](/refguide/metrics/#opentelemetry) section of *Metrics* for a guide on how to setup Metrics with OpenTelemetry.
154+
* See [Request to Create New Log Subscriber in Open Telemetry Format](/refguide/monitoring-mendix-runtime/#new-log-sub-opentelemetry) in *Monitoring Mendix Runtime* for a guide on how to setup Logs with OpenTelemetry.

0 commit comments

Comments
 (0)