Skip to content

Commit

Permalink
Remove zipkin from otel collector smoke test config (#3953) (#3981)
Browse files Browse the repository at this point in the history
* Remove zipkin from otel collector smoke test config

* Smoke tests too
  • Loading branch information
trask committed Aug 27, 2021
1 parent 2991cd2 commit bd576f2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
9 changes: 4 additions & 5 deletions examples/distro/smoke-tests/src/test/resources/otel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ receivers:
otlp:
protocols:
grpc:
zipkin:

processors:
batch:
Expand All @@ -24,8 +23,8 @@ exporters:
service:
pipelines:
traces:
receivers: [otlp, zipkin]
processors: [batch]
exporters: [logging, otlp]
receivers: [ otlp ]
processors: [ batch ]
exporters: [ logging, otlp ]

extensions: [health_check, pprof, zpages]
extensions: [ health_check, pprof, zpages ]
9 changes: 4 additions & 5 deletions examples/extension/src/test/resources/otel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ receivers:
otlp:
protocols:
grpc:
zipkin:

processors:
batch:
Expand All @@ -24,8 +23,8 @@ exporters:
service:
pipelines:
traces:
receivers: [otlp, zipkin]
processors: [batch]
exporters: [logging, otlp]
receivers: [ otlp ]
processors: [ batch ]
exporters: [ logging, otlp ]

extensions: [health_check, pprof, zpages]
extensions: [ health_check, pprof, zpages ]
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ protected void startEnvironment() {
backend.start();

collector =
new GenericContainer<>(DockerImageName.parse("otel/opentelemetry-collector-dev:latest"))
new GenericContainer<>(
DockerImageName.parse("otel/opentelemetry-collector-contrib-dev:latest"))
.dependsOn(backend)
.withNetwork(network)
.withNetworkAliases(COLLECTOR_ALIAS)
Expand Down

0 comments on commit bd576f2

Please sign in to comment.