1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-07-07 00:35:52 +02:00

small rephrasing

This commit is contained in:
Stefan Prisca
2020-05-11 12:21:40 +02:00
parent 74347efaaa
commit be01af5ea3

View File

@ -22,16 +22,16 @@ receivers:
otlp: {} otlp: {}
``` ```
This will create the receiver on the collector side, and open up port `55680` for receiving traces. This will create the receiver on the Collector side, and open up port `55680` for receiving traces.
The rest of the configuration is quite standard, with the only mention that we need to create the Jaeger exporter: The rest of the configuration is quite standard, with the only mention that we need to create the Jaeger exporter:
```yml ```yml
exporters: exporters:
jaeger: jaeger:
# Replace with a real endpoint. # Replace with a real endpoint.
endpoint: "jaeger-service-url:14250" endpoint: "<jaeger-service-url>:14250"
``` ```
After this, apply the configuration to your OpenTelemetry Collector instance (with `k apply -f otel-controller-config.yaml` for k8s users). You should see that the collector creates the otlp receiver: After this, apply the configuration to your OpenTelemetry Collector instance (with `k apply -f otel-controller-config.yaml` for k8s users). You should see that the Collector creates the otlp receiver:
```json ```json
{"level":"info","ts":1589184143.206609,"caller":"builder/receivers_builder.go:79","msg":"Receiver started.","component_kind":"receiver","component_type":"otlp","component_name":"otlp"} {"level":"info","ts":1589184143.206609,"caller":"builder/receivers_builder.go:79","msg":"Receiver started.","component_kind":"receiver","component_type":"otlp","component_name":"otlp"}
``` ```
@ -79,4 +79,4 @@ The traces should now be visible from the Jaeger UI (if you have it installed).
# Notes # Notes
* There is an issue with the exporter/collector which causes Jaeger to throw errors when receiving spans from the OpenTelemetry Collector: https://github.com/open-telemetry/opentelemetry-collector/issues/815 * There is an issue with the exporter/Collector which causes Jaeger to throw errors when receiving spans from the OpenTelemetry Collector: https://github.com/open-telemetry/opentelemetry-collector/issues/815