forked from quarkusio/quarkus-super-heroes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate deploy resources (from Build and Push Container images run #…
… 226)
- Loading branch information
1 parent
960f45f
commit 0271f22
Showing
129 changed files
with
3,277 additions
and
2,414 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
version: "3" | ||
services: | ||
|
||
prometheus: | ||
image: quay.io/prometheus/prometheus:v2.33.1 | ||
container_name: prometheus | ||
ports: | ||
- "9090:9090" | ||
volumes: | ||
- ../../deploy/docker-compose/monitoring/prometheus_scrape_configs.yml:/etc/prometheus/prometheus.yml | ||
|
||
jaeger: | ||
image: jaegertracing/all-in-one:1 | ||
container_name: jaeger | ||
ports: | ||
- "16686:16686" # Jaeger UI | ||
- "14268" # Accept thrift spans | ||
- "14250" # Accept gRPC spans | ||
|
||
otel-collector: | ||
image: otel/opentelemetry-collector:0.53.0 | ||
container_name: otel-collector | ||
command: | ||
- "--config=/conf/otel-collector-config.yml" | ||
volumes: | ||
- ../../deploy/docker-compose/monitoring/otel-collector-config.yml:/conf/otel-collector-config.yml | ||
ports: | ||
- "13133:13133" # health_check extension | ||
- "4317:4317" # OTLP gRPC receiver | ||
depends_on: | ||
- jaeger |
29 changes: 29 additions & 0 deletions
29
deploy/docker-compose/monitoring/otel-collector-config.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
receivers: | ||
otlp: | ||
protocols: | ||
grpc: | ||
endpoint: otel-collector:4317 | ||
|
||
exporters: | ||
jaeger: | ||
endpoint: jaeger:14250 | ||
tls: | ||
insecure: true | ||
|
||
processors: | ||
batch: | ||
|
||
extensions: | ||
health_check: | ||
|
||
service: | ||
extensions: | ||
- health_check | ||
pipelines: | ||
traces: | ||
receivers: | ||
- otlp | ||
processors: | ||
- batch | ||
exporters: | ||
- jaeger |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.