Skip to content

Commit 5ecbd03

Browse files
authored
chore(deps): update collector images in examples (open-telemetry#2692)
Signed-off-by: Alex Boten <[email protected]>
1 parent cb0515a commit 5ecbd03

File tree

10 files changed

+22
-15
lines changed

10 files changed

+22
-15
lines changed

examples/connect/docker/collector-config.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ receivers:
33
protocols:
44
grpc:
55
http:
6-
cors_allowed_origins:
7-
- http://*
8-
- https://*
6+
cors:
7+
allowed_origins:
8+
- http://*
9+
- https://*
910

1011
exporters:
1112
zipkin:
@@ -17,6 +18,9 @@ processors:
1718
batch:
1819

1920
service:
21+
telemetry:
22+
logs:
23+
level: debug
2024
pipelines:
2125
traces:
2226
receivers: [otlp]

examples/connect/docker/docker-compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ version: "3"
22
services:
33
# Collector
44
collector:
5-
image: otel/opentelemetry-collector:0.38.0
5+
image: otel/opentelemetry-collector:0.118.0
66
# image: otel/opentelemetry-collector:latest
7-
command: ["--config=/conf/collector-config.yaml", "--log-level=DEBUG"]
7+
command: ["--config=/conf/collector-config.yaml"]
88
volumes:
99
- ./collector-config.yaml:/conf/collector-config.yaml
1010
ports:

examples/fastify/docker/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: "3"
22
services:
33
collector:
4-
image: otel/opentelemetry-collector:0.92.0
4+
image: otel/opentelemetry-collector:0.118.0
55
command: ["--config=/conf/collector-config.yaml"]
66
volumes:
77
- ./collector-config.yaml:/conf/collector-config.yaml

examples/graphql/docker/collector-config.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ receivers:
33
protocols:
44
grpc:
55
http:
6-
cors_allowed_origins:
7-
- http://*
8-
- https://*
6+
cors:
7+
allowed_origins:
8+
- http://*
9+
- https://*
910

1011
exporters:
1112
zipkin:

examples/graphql/docker/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ services:
33
# Collector
44
collector:
55
# image: otel/opentelemetry-collector:latest
6-
image: otel/opentelemetry-collector:0.38.0
6+
image: otel/opentelemetry-collector:0.118.0
77
command: ["--config=/conf/collector-config.yaml"]
88
volumes:
99
- ./collector-config.yaml:/conf/collector-config.yaml

examples/mysql/docker/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ services:
2222
# Collector
2323

2424
otel-collector:
25-
image: otel/opentelemetry-collector-contrib:0.111.0
25+
image: otel/opentelemetry-collector-contrib:0.118.0
2626
command: ["--config=/etc/otel-collector-config.yaml", ""]
2727
volumes:
2828
- ./collector/otel-collector-config.yaml:/etc/otel-collector-config.yaml

examples/react-load/preact/docker/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ services:
33

44
# Collector
55
collector:
6-
image: otel/opentelemetry-collector-contrib:0.75.0
6+
image: otel/opentelemetry-collector-contrib:0.118.0
77
command: ["--config=/conf/collector-config.yaml"]
88
volumes:
99
- ./collector-config.yaml:/conf/collector-config.yaml

examples/react-load/react/docker/collector-config.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ receivers:
33
protocols:
44
http:
55
endpoint: 0.0.0.0:55678
6-
cors_allowed_origins: http://localhost:3000
6+
cors:
7+
allowed_origins:
8+
- http://localhost:3000
79

810
exporters:
911
zipkin:

examples/react-load/react/docker/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ services:
33

44
# Collector
55
collector:
6-
image: otel/opentelemetry-collector-contrib:0.40.0
6+
image: otel/opentelemetry-collector-contrib:0.118.0
77
command: ["--config=/conf/collector-config.yaml"]
88
volumes:
99
- ./collector-config.yaml:/conf/collector-config.yaml

examples/web/docker/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
collector:
3-
image: otel/opentelemetry-collector:0.99.0
3+
image: otel/opentelemetry-collector:0.118.0
44
command: ["--config=/conf/collector-config.yaml"]
55
volumes:
66
- ./collector-config.yaml:/conf/collector-config.yaml

0 commit comments

Comments
 (0)