Description
Describe the bug
With zipkin running thru docker, I can POST a span and then GET data back thru the RESTful API.
However, if I try to use this flutter plugin, I dont see any of the tracer or span when using the sample from plugin.
Steps to reproduce
- Install and run docker
- Run the zipkin image : docker run -d -p 9411:9411 openzipkin/zipkin
- open a browser to http://localhost:9411 to verify that zipkin is running
- Another verification test with zipkin is to use their swagger API to create a span and then fetch data from that span.
- https://zipkin.io/zipkin-api/#/
- Then I try to use the dart example code to connect and create a span or trace into zipkin
- I am unable to find evidence inside of zipkin that it connected or sent any data
What did you expect to see?
After running the dart code at https://github.com/sk92129/otlp-cmdline/tree/main, I expected to see some evidence of the data inside of zipkin. Or to find traceID, or some identifiable ID to search for inside of zipkin.
What did you see instead?
I saw that the dart command line code ran without error but there was no evidence that it connected or sent any data to the collector.
What version and what artifacts are you using?
Artifacts: opentelemetry-sdk
, collector exporter
Version: ^0.18.7 is in my pubspec.yaml
How did you reference these artifacts? pubspec.yaml
Environment
Dart Version: 3.27.0
OS: Windows 10
Additional context
Add any other context about the problem here.