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: 16 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 (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2026-04-10T01:46:45.000Z (4 months ago)
- Last Synced: 2026-04-10T03:24:21.469Z (4 months ago)
- Language: Go
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```