File tree 5 files changed +9
-2
lines changed
5 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 9
9
10
10
* [ grafana] update grafana to 10.2.3
11
11
([ #1332 ] ( https://github.com/open-telemetry/opentelemetry-demo/pull/1332 ) )
12
+ * [ frontendproxy] Enable envoy environment resource detector
13
+ ([ #1291 ] ( https://github.com/open-telemetry/opentelemetry-demo/pull/1291 ) )
12
14
* [ currencyservice] - add package name prefix to ` rpc.service ` attribute
13
15
([ #1333 ] ( https://github.com/open-telemetry/opentelemetry-demo/pull/1333 ) )
14
16
Original file line number Diff line number Diff line change @@ -256,6 +256,7 @@ services:
256
256
- OTEL_COLLECTOR_HOST
257
257
- OTEL_COLLECTOR_PORT_GRPC
258
258
- OTEL_COLLECTOR_PORT_HTTP
259
+ - OTEL_RESOURCE_ATTRIBUTES
259
260
- ENVOY_PORT
260
261
depends_on :
261
262
frontend :
Original file line number Diff line number Diff line change @@ -345,6 +345,7 @@ services:
345
345
- OTEL_COLLECTOR_HOST
346
346
- OTEL_COLLECTOR_PORT_GRPC
347
347
- OTEL_COLLECTOR_PORT_HTTP
348
+ - OTEL_RESOURCE_ATTRIBUTES
348
349
- ENVOY_PORT
349
350
depends_on :
350
351
frontend :
Original file line number Diff line number Diff line change 1
1
# Copyright The OpenTelemetry Authors
2
2
# SPDX-License-Identifier: Apache-2.0
3
3
4
-
5
- FROM envoyproxy/envoy:v1.28-latest
4
+ FROM envoyproxy/envoy:v1.29-latest
6
5
RUN apt-get update && apt-get install -y gettext-base && apt-get clean && rm -rf /var/lib/apt/lists/*
7
6
8
7
USER envoy
Original file line number Diff line number Diff line change @@ -26,6 +26,10 @@ static_resources:
26
26
cluster_name : opentelemetry_collector_grpc
27
27
timeout : 0.250s
28
28
service_name : frontend-proxy
29
+ resource_detectors :
30
+ - name : envoy.tracers.opentelemetry.resource_detectors.environment
31
+ typed_config :
32
+ " @type " : type.googleapis.com/envoy.extensions.tracers.opentelemetry.resource_detectors.v3.EnvironmentResourceDetectorConfig
29
33
route_config :
30
34
name : local_route
31
35
virtual_hosts :
You can’t perform that action at this time.
0 commit comments