Skip to content

Commit

Permalink
Remove all the collector OTLP receiver legacy gRPC port references
Browse files Browse the repository at this point in the history
  • Loading branch information
mxiamxia committed May 21, 2021
1 parent a3d84a7 commit 94f5c34
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ verify_export(Config) ->
Protocol = ?config(protocol, Config),
Port = case Protocol of
grpc ->
55680;
4317;
http_protobuf ->
55681
end,
Expand Down
2 changes: 1 addition & 1 deletion config/otel-collector-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ receivers:
otlp:
protocols:
grpc:
endpoint: "0.0.0.0:55680"
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:55681"
processors:
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
version: '3'
version: "3"
services:
otel:
image: otel/opentelemetry-collector-contrib-dev
command: ["--config=/conf/otel-collector-config.yaml"]
privileged: true
ports:
- 55681:55681
- 55680:55680
- 4317:4317
volumes:
- ./config/otel-collector-config.yaml:/conf/otel-collector-config.yaml
links:
Expand Down

0 comments on commit 94f5c34

Please sign in to comment.