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
I expected to be able to use jq to process JSON formatted vegeta results: echo 'GET http://httpbin.org/get' | vegeta attack -rate=1 -duration=1s | vegeta encode" | jq
This commits reverts #506 because its JSON string escaping logic taken
from github.com/valyala/quicktemplate isn't complete and is incompatible
with `encoding/json`. The performance gains do not justify this short
coming (at least for Vegeta). We fix the #505 by re-generating the
easyjson encoders.
Version and Runtime
Expected Behaviour
I expected to be able to use
jq
to process JSON formatted vegeta results:echo 'GET http://httpbin.org/get' | vegeta attack -rate=1 -duration=1s | vegeta encode" | jq
Actual Behaviour
Steps to Reproduce
echo "GET http://httpbin.org/get" | vegeta attack -rate=1 -duration=1s | vegeta encode
This produces output like
The objects in the
headers
array are missing commas between them.Additional Context
The text was updated successfully, but these errors were encountered: