Skip to content

Commit

Permalink
chore: update opentelemetry example
Browse files Browse the repository at this point in the history
  • Loading branch information
vmihailenco committed Sep 10, 2023
1 parent b82afa5 commit 829240a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions example/opentelemetry/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3'

services:
clickhouse:
image: clickhouse/clickhouse-server:22.10
image: clickhouse/clickhouse-server:23.4
restart: on-failure
environment:
CLICKHOUSE_DB: uptrace
Expand All @@ -26,7 +26,7 @@ services:
POSTGRES_PASSWORD: uptrace
POSTGRES_DB: uptrace
healthcheck:
test: ['CMD-SHELL', 'pg_isready', '-U', 'uptrace', '-d', 'uptrace']
test: ['CMD-SHELL', 'pg_isready -U uptrace -d uptrace']
interval: 1s
timeout: 1s
retries: 30
Expand All @@ -36,7 +36,7 @@ services:
- '5432:5432'

uptrace:
image: 'uptrace/uptrace:1.5.0'
image: 'uptrace/uptrace:1.5.6'
#image: 'uptrace/uptrace-dev:latest'
restart: on-failure
volumes:
Expand All @@ -51,7 +51,7 @@ services:
condition: service_healthy

otelcol:
image: otel/opentelemetry-collector-contrib:0.58.0
image: otel/opentelemetry-collector-contrib:0.70.0
restart: on-failure
volumes:
- ./config/otel-collector.yaml:/etc/otelcol-contrib/config.yaml
Expand Down

0 comments on commit 829240a

Please sign in to comment.