Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/drylikov/opentelemetry_collector_dev_setup
https://github.com/drylikov/opentelemetry_collector_dev_setup
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/drylikov/opentelemetry_collector_dev_setup
- Owner: drylikov
- License: mit
- Created: 2024-06-18T23:51:29.000Z (5 months ago)
- Default Branch: drylikov
- Last Pushed: 2024-06-18T23:53:40.000Z (5 months ago)
- Last Synced: 2024-06-19T06:42:35.138Z (5 months ago)
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OpenTelemetry Collector Demo
This repository contains very simple open telemetry setup. It was copied from [`open-telemetry/opentelemetry-collector-contrib`](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/examples/demo).
I modified it for you so it can be use for developing your Next.js application without any changes. Just run the following command in your command line to run all services provided here:
```shell
docker-compose up -d
```That will expose the following backends:
- Jaeger at http://0.0.0.0:16686
- Zipkin at http://0.0.0.0:9411
- Prometheus at http://0.0.0.0:9090Notes:
- It may take some time for the application metrics to appear on the Prometheus
dashboard;To clean up any docker container from the demo run `docker-compose down`.