Skip to content

Commit

Permalink
Add collector worker (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaykeren authored Jun 7, 2023
2 parents a919652 + 8693cf8 commit 5c71476
Showing 1 changed file with 27 additions and 15 deletions.
42 changes: 27 additions & 15 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ services:
command: postgres -c 'max_connections=315' -c 'shared_buffers=256MB'

redis:
image: redis:7.0.9-alpine
image: redis:7.0.11-alpine
volumes:
- redis_data:/data
restart: unless-stopped

influxdb:
image: influxdb:2.6.1
image: influxdb:2.7.1
expose:
- "8086"
volumes:
Expand Down Expand Up @@ -69,9 +69,20 @@ services:
restart: unless-stopped

digma-collector-api:
image: digmatic/digma-collector:0.2.96
image: digmatic/digma-collector:0.2.99
ports:
- "5050:5050"
environment:
- RabbitMq__Host=${RabbitMq_Host:-rabbitmq}
- RabbitMq__Username=${RabbitMq_Username:-admin}
- RabbitMq__Password=${RabbitMq_Password:-admin}
- OtlpExporterUrl=
- ApplicationVersion=0.2.99
depends_on:
- rabbitmq
restart: unless-stopped
digma-collector-worker:
image: digmatic/digma-collector-worker:0.2.99
environment:
- CacheSettings__RedisConnection=${REDIS_CONNECTION:-redis}
- ConnectionStrings__Postgres=Server=${POSTGRES_SERVER:-postgres};Port=${POSTGRES_SERVER_PORT:-5432};Database=digma_analytics;User Id=${POSTGRES_USER:-postgres};Password=${POSTGRES_PWD:-postgres};
Expand All @@ -80,41 +91,41 @@ services:
- RabbitMq__Username=${RabbitMq_Username:-admin}
- RabbitMq__Password=${RabbitMq_Password:-admin}
- OtlpExporterUrl=
- ApplicationVersion=0.2.96
- ApplicationVersion=0.2.99
- Jaeger__OtlpUrl=http://jaeger:4317
- BACKEND_DEPLOYMENT_TYPE=DockerExtension
depends_on:
- redis
- influxdb
- rabbitmq
restart: unless-stopped

digma-plugin-api:
image: digmatic/digma-plugin-api:0.2.96
image: digmatic/digma-plugin-api:0.2.99
ports:
- "5051:5051"
environment:
- CacheSettings__RedisConnection=${REDIS_CONNECTION:-redis}
- AnalyticsUrl=http://${ANALYTICS_URL:-digma-analytics}:5052
- OtlpExporterUrl=
- BACKEND_DEPLOYMENT_TYPE=DockerExtension
- ApplicationVersion=0.2.96
- ApplicationVersion=0.2.99
restart: unless-stopped

digma-analytics:
image: digmatic/digma-analytics:0.2.96
image: digmatic/digma-analytics:0.2.99
environment:
- influx2__Url=http://${INFLUXDB_URL:-influxdb}:8086
- ConnectionStrings__Postgres=Server=${POSTGRES_SERVER:-postgres};Port=${POSTGRES_SERVER_PORT:-5432};Database=digma_analytics;User Id=${POSTGRES_USER:-postgres};Password=${POSTGRES_PWD:-postgres};
- CacheSettings__RedisConnection=${REDIS_CONNECTION:-redis}
- OtlpExporterUrl=
- ApplicationVersion=0.2.96
- ApplicationVersion=0.2.99
depends_on:
- influxdb
- postgres
restart: unless-stopped

digma-scheduler:
image: digmatic/digma-scheduler:0.2.96
image: digmatic/digma-scheduler:0.2.99
environment:
- influx2__Url=http://${INFLUXDB_URL:-influxdb}:8086
- ConnectionStrings__Postgres=Server=${POSTGRES_SERVER:-postgres};Port=${POSTGRES_SERVER_PORT:-5432};Database=digma_analytics;User Id=${POSTGRES_USER:-postgres};Password=${POSTGRES_PWD:-postgres};
Expand All @@ -123,15 +134,16 @@ services:
- RabbitMq__Password=${RabbitMq_Password:-admin}
- CacheSettings__RedisConnection=${REDIS_CONNECTION:-redis}
- OtlpExporterUrl=
- ApplicationVersion=0.2.96
- ApplicationVersion=0.2.99
- BACKEND_DEPLOYMENT_TYPE=DockerCompose
depends_on:
- influxdb
- postgres
- rabbitmq
restart: unless-stopped

digma-measurement-analysis:
image: digmatic/digma-measurement-analysis:0.2.96
image: digmatic/digma-measurement-analysis:0.2.99
environment:
- influx2__Url=http://${INFLUXDB_URL:-influxdb}:8086
- ConnectionStrings__Postgres=Server=${POSTGRES_SERVER:-postgres};Port=${POSTGRES_SERVER_PORT:-5432};Database=digma_analytics;User Id=${POSTGRES_USER:-postgres};Password=${POSTGRES_PWD:-postgres};
Expand All @@ -140,7 +152,7 @@ services:
- RabbitMq__Password=${RabbitMq_Password:-admin}
- CacheSettings__RedisConnection=${REDIS_CONNECTION:-redis}
- OtlpExporterUrl=
- ApplicationVersion=0.2.96
- ApplicationVersion=0.2.99
depends_on:
- influxdb
- postgres
Expand All @@ -149,7 +161,7 @@ services:
restart: unless-stopped

digma-insight-analysis:
image: digmatic/digma-insight-analysis:0.2.96
image: digmatic/digma-insight-analysis:0.2.99
environment:
- influx2__Url=http://${INFLUXDB_URL:-influxdb}:8086
- ConnectionStrings__Postgres=Server=${POSTGRES_SERVER:-postgres};Port=${POSTGRES_SERVER_PORT:-5432};Database=digma_analytics;User Id=${POSTGRES_USER:-postgres};Password=${POSTGRES_PWD:-postgres};
Expand All @@ -158,7 +170,7 @@ services:
- RabbitMq__Password=${RabbitMq_Password:-admin}
- CacheSettings__RedisConnection=${REDIS_CONNECTION:-redis}
- OtlpExporterUrl=
- ApplicationVersion=0.2.96
- ApplicationVersion=0.2.99
- Jaeger__OtlpUrl=http://jaeger:4317
depends_on:
- influxdb
Expand Down

0 comments on commit 5c71476

Please sign in to comment.