Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove the OTLP receiver legacy gRPC port(55680) references #588

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions content/en/docs/collector/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ processors:

exporters:
otlp:
endpoint: otelcol:55680
endpoint: otelcol:4317

extensions:
health_check:
Expand Down Expand Up @@ -87,9 +87,9 @@ processors:

exporters:
otlp:
endpoint: otelcol:55680
endpoint: otelcol:4317
otlp/2:
endpoint: otelcol2:55680
endpoint: otelcol2:4317

extensions:
health_check:
Expand Down Expand Up @@ -322,7 +322,7 @@ exporters:

# Data sources: traces, metrics, logs
otlp:
endpoint: otelcol2:55680
endpoint: otelcol2:4317
insecure: true

# Data sources: traces, metrics
Expand Down
6 changes: 3 additions & 3 deletions content/en/docs/collector/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ own Prometheus metrics.
```bash
$ git clone git@github.com:open-telemetry/opentelemetry-collector.git; \
cd opentelemetry-collector/examples; \
go build main.go; ./main & pid1="$!";
go build main.go; ./main & pid1=$!; \
docker run --rm -p 13133:13133 -p 14250:14250 -p 14268:14268 \
-p 55678-55680:55678-55680 -p 8888:8888 -p 9411:9411 \
-v "${PWD}/otel-local-config.yaml":/otel-local-config.yaml \
-p 55678-55679:55678-55679 -p 4317:4317 -p 8888:8888 -p 9411:9411 \
-v "${PWD}/local/otel-config.yaml":/otel-local-config.yaml \
--name otelcol otel/opentelemetry-collector \
--config otel-local-config.yaml; \
kill $pid1; docker stop otelcol
Expand Down