Skip to content

Commit

Permalink
Remove the OTLP receiver legacy gRPC port(55680) references (#500)
Browse files Browse the repository at this point in the history
Co-authored-by: Valentin Marchaud <contact@vmarchaud.fr>
  • Loading branch information
mxiamxia and vmarchaud authored May 25, 2021
1 parent 5a7fcc8 commit 7a1511d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
9 changes: 4 additions & 5 deletions examples/graphql/docker/collector-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ receivers:
grpc:
http:
cors_allowed_origins:
- http://*
- https://*
- http://*
- https://*

exporters:
zipkin:
Expand All @@ -15,15 +15,14 @@ exporters:

processors:
batch:
queued_retry:

service:
pipelines:
traces:
receivers: [otlp]
exporters: [zipkin]
processors: [batch, queued_retry]
processors: [batch]
metrics:
receivers: [otlp]
exporters: [prometheus]
processors: [batch, queued_retry]
processors: [batch]
6 changes: 3 additions & 3 deletions examples/graphql/docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ version: "3"
services:
# Collector
collector:
# image: otel/opentelemetry-collector:latest
image: otel/opentelemetry-collector:0.16.0
# image: otel/opentelemetry-collector:latest
image: otel/opentelemetry-collector:0.27.0
command: ["--config=/conf/collector-config.yaml", "--log-level=DEBUG"]
volumes:
- ./collector-config.yaml:/conf/collector-config.yaml
ports:
- "9464:9464"
- "55680:55680"
- "4317:4317"
- "55681:55681"
depends_on:
- zipkin-all-in-one
Expand Down

0 comments on commit 7a1511d

Please sign in to comment.