Skip to content
This repository was archived by the owner on Apr 2, 2024. It is now read-only.

Commit c50b6c9

Browse files
update the images
1 parent ce82932 commit c50b6c9

File tree

3 files changed

+15
-12
lines changed

3 files changed

+15
-12
lines changed

docker-compose/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ services:
3939
PROMSCALE_WEB_TELEMETRY_PATH: /metrics-text
4040
PROMSCALE_DB_URI: postgres://postgres:password@db:5432/postgres?sslmode=allow
4141
PROMSCALE_TRACING_OTLP_SERVER_ADDRESS: ":9202"
42-
PROMSCALE_TELEMETRY_TRACE_JAEGER_ENDPOINT: "http://otel-collector:14268/api/traces"
42+
PROMSCALE_TELEMETRY_TRACE_OTEL_ENDPOINT: "otel-collector:4317"
4343
PROMSCALE_TELEMETRY_TRACE_SAMPLING_RATIO: "0.1"
4444
PROMSCALE_METRICS_RULES_CONFIG_FILE: /prometheus.yml
4545

docker-compose/otel-collector-config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
receivers:
2-
jaeger:
2+
otlp:
33
protocols:
4-
thrift_http:
5-
endpoint: "0.0.0.0:14268"
4+
grpc:
5+
http:
66

77
exporters:
88
logging:
@@ -21,7 +21,7 @@ service:
2121

2222
pipelines:
2323
traces:
24-
receivers: [jaeger]
24+
receivers: [otlp]
2525
exporters: [otlp, logging]
2626
processors: [batch]
2727

docker-compose/promscale-demo/docker-compose.yaml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,24 +40,27 @@ services:
4040
- ${PWD}/../rules.yml:/rules.yml
4141
- ${PWD}/../alerts.yml:/alerts.yml
4242
environment:
43+
PROMSCALE_WEB_TELEMETRY_PATH: /metrics-text
4344
PROMSCALE_DB_URI: postgres://postgres:password@timescaledb:5432/otel_demo?sslmode=allow
44-
PROMSCALE_TELEMETRY_TRACE_JAEGER_ENDPOINT: "http://collector:14268/api/traces"
45+
PROMSCALE_TELEMETRY_TRACE_OTEL_ENDPOINT: "collector:4317"
4546
PROMSCALE_TELEMETRY_TRACE_SAMPLING_RATIO: "0.1"
4647
PROMSCALE_METRICS_RULES_CONFIG_FILE: /prometheus.yml
48+
TOBS_PROMSCALE_QUICK_START: "true"
4749

4850
collector:
49-
platform: linux/amd64
50-
image: "timescale/promscale-demo-collector"
51-
command: [ "--config=/etc/otel-collector-config.yaml" ]
51+
image: "otel/opentelemetry-collector:0.50.0"
52+
command: [ "--config=/etc/otel-collector-config.yml" ]
5253
depends_on:
5354
- promscale
5455
ports:
5556
- 14268:14268/tcp # jaeger http
5657
- 4317:4317/tcp
5758
- 4318:4318/tcp
59+
volumes:
60+
- ${PWD}/../otel-collector-config.yml:/etc/otel-collector-config.yml
5861

5962
jaeger:
60-
image: jaegertracing/jaeger-query:1.33.0
63+
image: jaegertracing/jaeger-query:1.35.0
6164
environment:
6265
SPAN_STORAGE_TYPE: grpc-plugin
6366
command: [
@@ -67,7 +70,7 @@ services:
6770
- "16686:16686"
6871

6972
grafana:
70-
image: timescale/promscale-demo-grafana
73+
image: vineeth97/promscale-demo-grafana
7174
volumes:
7275
- grafana-data:/var/lib/grafana
7376
ports:
@@ -93,7 +96,7 @@ services:
9396
- OTEL_EXPORTER_OTLP_ENDPOINT=collector:4317
9497

9598
lower:
96-
image: jamesgresql/opentelemetry-demo_lower:0.2
99+
image: timescale/promscale-demo-lower
97100
restart: on-failure
98101
depends_on:
99102
- collector

0 commit comments

Comments
 (0)