Skip to content

Commit

Permalink
Fix some otlp port numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
eldarnash committed Nov 11, 2023
1 parent 11caa18 commit 1a35283
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion content/chapter-sources/opentelemetry/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The following example receives OpenTelemetry data and forwards it to an OpenTele
log otel_forward_mode_alts {
source {
opentelemetry(
port(12345)
port(4317)
auth(alts())
);
};
Expand Down
4 changes: 2 additions & 2 deletions content/headless/chunk/syslog-ng-otlp-intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ To use it, configure a `syslog-ng-otlp()` destination on the sender node, and a

```shell
destination d_syslog_ng_otlp {
syslog-ng-otlp(url("your-receiver-syslog-ng-instance:12346"));
syslog-ng-otlp(url("your-receiver-syslog-ng-instance:4317"));
};
```

```shell
source s_syslog_ng_otlp {
syslog-ng-otlp(port(12346));
syslog-ng-otlp(port(4317));
};
```

0 comments on commit 1a35283

Please sign in to comment.