Skip to content

Commit

Permalink
Add a body_length field to http objects
Browse files Browse the repository at this point in the history
Signed-off-by: Matthias Vallentin <[email protected]>
  • Loading branch information
mavam committed Jul 15, 2024
1 parent 969e9f0 commit 74e9dd7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
7 changes: 6 additions & 1 deletion objects/http_request.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,12 @@
},
"length": {
"caption": "Request Length",
"description": "The HTTP request length, in number of bytes.",
"description": "The length of the entire HTTP request, in number of bytes.",
"requirement": "optional"
},
"body_length": {
"caption": "Request Body Length",
"description": "The length of the HTTP request body, in number of bytes.",
"requirement": "optional"
},
"referrer": {
Expand Down
7 changes: 7 additions & 0 deletions objects/http_response.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@
"requirement": "optional"
},
"length": {
"caption": "Response Length",
"description": "The length of the entire HTTP response, in number of bytes.",
"requirement": "optional"
},
"body_length": {
"caption": "Response Body Length",
"description": "The length of the HTTP response body, in number of bytes.",
"requirement": "optional"
},
"message": {
Expand Down

0 comments on commit 74e9dd7

Please sign in to comment.