-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mathieu Martin
committed
Nov 12, 2018
1 parent
7524f14
commit e303ae5
Showing
18 changed files
with
127 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,40 @@ | ||
- key: http | ||
# Additional HTTP fields used by Packetbeats | ||
- key: http-packetbeat | ||
title: "HTTP" | ||
description: HTTP-specific event fields. | ||
fields: | ||
- name: http | ||
type: group | ||
description: Information about the HTTP request and response. | ||
fields: | ||
- name: request | ||
description: HTTP request | ||
type: group | ||
fields: | ||
- name: params | ||
description: > | ||
The query parameters or form values. The query parameters are available in the Request-URI | ||
and the form values are set in the HTTP body when the content-type is set to `x-www-form-urlencoded`. | ||
- name: headers | ||
type: object | ||
object_type: keyword | ||
description: > | ||
A map containing the captured header fields from the request. | ||
Which headers to capture is configurable. If headers with the same | ||
header name are present in the message, they will be separated by | ||
commas. | ||
- name: body | ||
type: text | ||
description: The body of the HTTP request. | ||
|
||
- name: response | ||
description: HTTP response | ||
type: group | ||
fields: | ||
- name: code | ||
description: The HTTP status code. | ||
example: 404 | ||
- name: http.request.params | ||
description: > | ||
The query parameters or form values. The query parameters are available in the Request-URI | ||
and the form values are set in the HTTP body when the content-type is set to `x-www-form-urlencoded`. | ||
- name: phrase | ||
description: The HTTP status phrase. | ||
example: Not found. | ||
- name: http.request.headers | ||
type: object | ||
object_type: keyword | ||
description: > | ||
A map containing the captured header fields from the request. | ||
Which headers to capture is configurable. If headers with the same | ||
header name are present in the message, they will be separated by | ||
commas. | ||
- name: headers | ||
type: object | ||
object_type: keyword | ||
description: > | ||
A map containing the captured header fields from the response. | ||
Which headers to capture is configurable. If headers with the | ||
same header name are present in the message, they will be separated | ||
by commas. | ||
- name: http.request.body | ||
type: text | ||
description: The body of the HTTP request. | ||
|
||
- name: http.response.code | ||
description: The HTTP status code. | ||
example: 404 | ||
|
||
- name: http.response.phrase | ||
description: The HTTP status phrase. | ||
example: Not found. | ||
|
||
- name: http.response.headers | ||
type: object | ||
object_type: keyword | ||
description: > | ||
A map containing the captured header fields from the response. | ||
Which headers to capture is configurable. If headers with the | ||
same header name are present in the message, they will be separated | ||
by commas. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.