You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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.
The text was updated successfully, but these errors were encountered:
I changed to the Batch version.
//final processor = SimpleSpanProcessor(exporter);
final BatchSpanProcessor processor = BatchSpanProcessor(exporter);
However, the httpClient.post does not have a check on the response code to see if the send was successful.
A breakpoint in CollectorExporter._send in the catch clauses shows this:
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
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 exporterVersion: ^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.
The text was updated successfully, but these errors were encountered: