mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-01-22 03:38:42 +02:00
dbfc75817a
* 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 <cheung.zhy.csu@gmail.com>
24 lines
540 B
YAML
24 lines
540 B
YAML
# 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
|