Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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.