-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use docker compose in otel collector example (#5244)
* Remove k8s files * Add docker compose file * Update endpoint in main.go * Update README to use docker compose * Update CHANGELOG * Add Shutting down section for cleanup steps * Replace logging exporter with debug exporter --------- Co-authored-by: Chester Cheung <[email protected]>
- Loading branch information
1 parent
7ee6ff1
commit dbfc758
Showing
12 changed files
with
83 additions
and
427 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 was deleted.
Oops, something went wrong.
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,23 @@ | ||
# Copyright The OpenTelemetry Authors | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
services: | ||
otel-collector: | ||
image: otel/opentelemetry-collector-contrib:0.91.0 | ||
command: ["--config=/etc/otel-collector.yaml"] | ||
volumes: | ||
- ./otel-collector.yaml:/etc/otel-collector.yaml | ||
ports: | ||
- 4317:4317 | ||
|
||
prometheus: | ||
image: prom/prometheus:v2.45.2 | ||
volumes: | ||
- ./prometheus.yaml:/etc/prometheus/prometheus.yml | ||
ports: | ||
- 9090:9090 | ||
|
||
jaeger: | ||
image: jaegertracing/all-in-one:1.52 | ||
ports: | ||
- 16686:16686 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.