github.com/turbot/steampipe@v1.7.0-rc.0.0.20240517123944-7cef272d4458/pkg/otel/README.md (about) 1 # OpenTelemetry Collector 2 3 This collector is provided for local testing purposes. It uses `docker-compose` and by default runs against the 4 `otel/opentelemetry-collector-contrib-dev:latest` image. 5 6 To run the collector, switch to the `otel` folder and run: 7 8 ```shell 9 docker-compose up -d 10 ``` 11 12 The demo exposes the following backends: 13 14 - Jaeger at http://0.0.0.0:16686 15 - Prometheus at http://0.0.0.0:9090 16 17 Notes: 18 19 - It may take some time for the application metrics to appear on the Prometheus 20 dashboard; 21 22 To clean up any docker container from the demo run `docker-compose down` from 23 the `examples/demo` folder. 24 25 26