Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mossaka/otel-condvar
This repo reproduces an issue with the missing parent span for otel.
https://github.com/mossaka/otel-condvar
Last synced: about 1 month ago
JSON representation
This repo reproduces an issue with the missing parent span for otel.
- Host: GitHub
- URL: https://github.com/mossaka/otel-condvar
- Owner: Mossaka
- Created: 2024-03-01T01:24:05.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-03-04T18:50:59.000Z (9 months ago)
- Last Synced: 2024-03-04T20:13:18.610Z (9 months ago)
- Language: Rust
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# otel-condvar
## Usage
Start a local Jaeger instance:
```bash
docker run -d -p16686:16686 -p4317:4317 -e COLLECTOR_OTLP_ENABLED=true jaegertracing/all-in-one:latest
```Run the example:
```bash
cargo run -- 1
```See the traces in the Jaeger UI at http://localhost:16686
You will find that under span `a2` there is a warning saying "invalid parent span id". This is because the parent span id is not set correctly.
## License
This project is licensed under the MIT license.