Skip to content

Commit

Permalink
Fixing error in config for internal-telemetry.md
Browse files Browse the repository at this point in the history
- collector failed with config error:
```
error decoding 'service.telemetry': decoding failed due to the following error(s):

'traces.processors': source data must be an array or slice, got map
```

- OTLP Exporter was trying to send with SSL, to receiver that was not set up with SSL.
```
warn	[email protected]/clientconn.go:1379	[core] [Channel #1 SubChannel #8]grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:14317", ServerName: "localhost:14317", }. Err: connection error: desc = "transport: authentication handshake failed: tls: first record does not look like a TLS handshake"	{"grpc_log": true}
```
  • Loading branch information
avilevy18 authored Nov 22, 2024
1 parent e4716bd commit 1bbca3a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/en/docs/collector/internal-telemetry.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,14 +168,14 @@ service:
exporter:
otlp:
protocol: grpc/protobuf
endpoint: localhost:14317
endpoint: http://localhost:14317
traces:
processors:
batch:
- batch:
exporter:
otlp:
protocol: grpc/protobuf
endpoint: localhost:14317
endpoint: http://localhost:14317
```

{{% alert title="Caution" color="warning" %}}
Expand Down

0 comments on commit 1bbca3a

Please sign in to comment.