-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Store Responses in ES #332
Comments
Per #331 (comment) I think it may be easiest to just insert the response body into the ESRequestResponse struct We could also try to support some of the most common response headers if we wanted: https://en.wikipedia.org/wiki/List_of_HTTP_header_fields#Response_fields |
We could just use the (binary field type)[https://www.elastic.co/guide/en/elasticsearch/reference/current/binary.html] and dump the response and figure out other stuff later |
The problem with responses that they are arriving asynchronously from requests, so we have two options: inside ES plugin for each request wait for the response, and only after it received: send to ES. Alternative is to send responses separately. UPDATEAh, my bad, I did not clarify issue. Here I was talking about original responses. For replayed responses is it easy, and it is how it works now. |
Okay that makes more sense. I didn't realize that the original response was being monitored or recorded. I'll take a look but if you have a quick link to it that'll help. |
Thanks!
|
Will close it for now |
We'd like to store responses in ES as well. A schema and basic architecture is needed.
The text was updated successfully, but these errors were encountered: