Skip to content

Commit

Permalink
upgrade (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaykeren authored Aug 27, 2023
2 parents e8d4f38 + 1961eae commit 489f08f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ LABEL org.opencontainers.image.title="Digma Continuous Feedback" \
com.docker.extension.detailed-description="<h3>Continuous Feedback for Code</h3><p>Digma collects data from applications running locally or inside your containers and lints their runtime behavior. It is able to find issues, code smells, performance degradations and provide more context to making risky changes.</p><p>The Digma IDE plugin is an <a href="https://digma.ai/blog/introducing-the-digma-jetbrains-plugin/">IntelliJ plugin</a> that provides detailed information in your code itself as <a href="https://digma.ai/blog/ci-cd-cf-the-devops-toolchains-missing-link/">Continuous Feedback</a> for developers who can explore hidden issues and design better applications. Digma provides tracing visualization using <a href="https://digma.ai/blog/jaeger-distributed-tracing-with-java-an-introduction/">Jaeger</a> and shows linting highlights, advanced insights and even live data.</p><p>Digma currently supports Java applications with additional coding languages to be added soon.</p>" \
com.docker.extension.publisher-url="https://digma.ai" \
com.docker.extension.additional-urls="[{\"alt\": \"Digma\", \"title\":\"Digma Runtime Linter\", \"url\": \"https://digma.ai\"},{\"alt\": \"Digma Slack Group\", \"title\":\" Continous Feedback Slack Channel\", \"url\": \"https://join.slack.com/t/continuous-feedback/shared_invite/zt-1hk5rbjow-yXOIxyyYOLSXpCZ4RXstgA\"},{\"alt\": \"Digma IntelliJ Plugin\", \"title\":\"Jetbrain IDEA Plugin\", \"url\": \"https://plugins.jetbrains.com/plugin/19470-digma-continuous-feedback\"}]" \
com.docker.extension.changelog="<p>Extension changelog<ul><li>Add jaeger span events</li><li>Backend version bump</li></ul></p>" \
com.docker.extension.changelog="<p>Extension changelog<ul><li>Fix version updates notification</li><li>Backend version bump</li></ul></p>" \
com.docker.desktop.extension.icon="https://media-public-1.s3.eu-west-1.amazonaws.com/digma.svg" \
com.docker.extension.categories="cloud-development,testing-tools"

Expand Down
28 changes: 14 additions & 14 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ services:
restart: unless-stopped

digma-collector-api:
image: digmatic/digma-collector:0.2.139
image: digmatic/digma-collector:0.2.140
ports:
- "5050:5050"
environment:
Expand All @@ -109,13 +109,13 @@ services:
- RabbitMq__Username=${RabbitMq_Username:-admin}
- RabbitMq__Password=${RabbitMq_Password:-admin}
- OtlpExporterUrl=
- ApplicationVersion=0.2.139
- ApplicationVersion=0.2.140
depends_on:
- rabbitmq
restart: unless-stopped

digma-collector-worker:
image: digmatic/digma-collector-worker:0.2.139
image: digmatic/digma-collector-worker:0.2.140
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 @@ -124,7 +124,7 @@ services:
- RabbitMq__Username=${RabbitMq_Username:-admin}
- RabbitMq__Password=${RabbitMq_Password:-admin}
- OtlpExporterUrl=
- ApplicationVersion=0.2.139
- ApplicationVersion=0.2.140
- Jaeger__OtlpUrl=http://jaeger:4317
- BACKEND_DEPLOYMENT_TYPE=DockerExtension
- Kafka__Urls__0=kafka:9092
Expand All @@ -135,7 +135,7 @@ services:
restart: unless-stopped

digma-plugin-api:
image: digmatic/digma-plugin-api:0.2.139
image: digmatic/digma-plugin-api:0.2.140
ports:
- "5051:5051"
environment:
Expand All @@ -145,25 +145,25 @@ services:
- OtlpExporterUrl=
- BACKEND_DEPLOYMENT_TYPE=DockerExtension
- GlobalExceptionSettings__ExposeInternalDetails=true
- ApplicationVersion=0.2.139
- ApplicationVersion=0.2.140
restart: unless-stopped

digma-analytics:
image: digmatic/digma-analytics:0.2.139
image: digmatic/digma-analytics:0.2.140
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}
- GlobalExceptionSettings__ExposeInternalDetails=true
- OtlpExporterUrl=
- ApplicationVersion=0.2.139
- ApplicationVersion=0.2.140
depends_on:
- influxdb
- postgres
restart: unless-stopped

digma-scheduler:
image: digmatic/digma-scheduler:0.2.139
image: digmatic/digma-scheduler:0.2.140
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 @@ -172,7 +172,7 @@ services:
- RabbitMq__Password=${RabbitMq_Password:-admin}
- CacheSettings__RedisConnection=${REDIS_CONNECTION:-redis}
- OtlpExporterUrl=
- ApplicationVersion=0.2.139
- ApplicationVersion=0.2.140
- BACKEND_DEPLOYMENT_TYPE=DockerCompose
depends_on:
- influxdb
Expand All @@ -181,7 +181,7 @@ services:
restart: unless-stopped

digma-measurement-analysis:
image: digmatic/digma-measurement-analysis:0.2.139
image: digmatic/digma-measurement-analysis:0.2.140
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 @@ -190,7 +190,7 @@ services:
- RabbitMq__Password=${RabbitMq_Password:-admin}
- CacheSettings__RedisConnection=${REDIS_CONNECTION:-redis}
- OtlpExporterUrl=
- ApplicationVersion=0.2.139
- ApplicationVersion=0.2.140
- Kafka__Urls__0=kafka:9092
depends_on:
- influxdb
Expand All @@ -200,7 +200,7 @@ services:
restart: unless-stopped

digma-insight-analysis:
image: digmatic/digma-insight-analysis:0.2.139
image: digmatic/digma-insight-analysis:0.2.140
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 @@ -209,7 +209,7 @@ services:
- RabbitMq__Password=${RabbitMq_Password:-admin}
- CacheSettings__RedisConnection=${REDIS_CONNECTION:-redis}
- OtlpExporterUrl=
- ApplicationVersion=0.2.139
- ApplicationVersion=0.2.140
- Jaeger__OtlpUrl=http://jaeger:4317
depends_on:
- influxdb
Expand Down

0 comments on commit 489f08f

Please sign in to comment.