Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sapvs/nats_otel
sample pub sub and request reply for tracing in nats messages
https://github.com/sapvs/nats_otel
Last synced: 4 days ago
JSON representation
sample pub sub and request reply for tracing in nats messages
- Host: GitHub
- URL: https://github.com/sapvs/nats_otel
- Owner: sapvs
- Created: 2023-08-30T05:20:02.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-09-20T07:19:23.000Z (about 1 year ago)
- Last Synced: 2023-09-20T09:00:15.502Z (about 1 year ago)
- Language: Go
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Open Telemetry traces
## Start Jaeger
```bash
docker run -it --name jaeger --rm \
-e COLLECTOR_ZIPKIN_HTTP_PORT=9411 \
-p 5775:5775/udp \
-p 6831:6831/udp \
-p 6832:6832/udp \
-p 5778:5778 \
-p 16686:16686 \
-p 14268:14268 \
-p 9411:9411 jaegertracing/all-in-one
```