Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/coding4kay/local-observability-otel
This setup uses Docker Compose to run the OpenTelemetry Collector along with Grafana Tempo, Mimir, and Loki for tracing, metrics, and logging respectively.
https://github.com/coding4kay/local-observability-otel
docker docker-com grafana loki mimir otel otel-collector podman tempo
Last synced: 5 days ago
JSON representation
This setup uses Docker Compose to run the OpenTelemetry Collector along with Grafana Tempo, Mimir, and Loki for tracing, metrics, and logging respectively.
- Host: GitHub
- URL: https://github.com/coding4kay/local-observability-otel
- Owner: coding4kay
- Created: 2025-01-18T14:46:51.000Z (6 days ago)
- Default Branch: main
- Last Pushed: 2025-01-18T21:36:34.000Z (6 days ago)
- Last Synced: 2025-01-18T22:25:50.589Z (6 days ago)
- Topics: docker, docker-com, grafana, loki, mimir, otel, otel-collector, podman, tempo
- Homepage:
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OpenTelemetry Collector Setup with Tempo, Mimir, and Loki
This setup uses Docker Compose to run the OpenTelemetry Collector along with Grafana Tempo, Mimir, and Loki for tracing, metrics, and logging respectively.
## Prerequisites
You can use Docker/Docker Compose or Podman/Podman Compose to run the setup.## Services
- OpenTelemetry Collector
- Tempo
- Mimir
- Loki
- GrafanaStart the services using Docker Compose.
```bash
docker-compose up -d
```Start the services using Podman Compose.
```bash
podman-compose up -d
```
Access Grafana at `http://localhost:3000`.To stop all services, run:
```sh
docker-compose down
```