I am trying to use open telemetry to collect trace information
tracerProviderBuilder
.AddConsoleExporter()
.AddZipkinExporter(o =>
{
o.Endpoint = new Uri("http://localhost:9411/api/v2/spans");
})
The writing to the console exporter works fine.
I have a docker container running Zipkin on localhost:9411, looks like it is working fine, except no data.
The client application is a .net core web api.
Edit:
I have created a test client that posts the json from the example in the Zipkin swagger documentation to the Zipkin server.
I get a HTTP 202 Accepted back. But still no items in list from the query search. But if I search by trace ID it shows up.