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
* changed version to 2
* Added example values for span. This makes the example JSON in the
spans POST valid. (Fixesopenzipkin#46).
The spans POST documentation is still a bit misleading. With the
parameter named "spans", it seems to imply that it's expecting
```json
{
"spans": [{<...span...>}, {<....span...>}]
}
```
but it actually just wants:
```json
[{<...span...>}, {<...span...>}]
```
I couldn't figure out a way to acurately represent this in Swagger 2. It
might be possible using [Swagger
3 request body descriptions.](https://swagger.io/docs/specification/describing-request-body/)
from @jsw on openzipkin/zipkin-gcp#73
The JSON generated by swagger has invalid ids. Took me a while to catch that and sort it out. https://zipkin.io/zipkin-api/#/default/post_spans
The text was updated successfully, but these errors were encountered: