Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions filebeat/_meta/fields.common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,3 +114,20 @@
log events this is when the log line was read by Filebeat. In comparison
@timestamp is the processed timestamp from the log line. If both are identical
only @timestamp should be used.

- name: http.response.status_code
type: long
description: >
HTTP response status_code.
example: 404

- name: http.response.elapsed_time
type: long
description: >
Elapsed time between request and response in milli seconds.

- name: http.response.content_length
type: long
description: >
Content length of the HTTP response body.

32 changes: 32 additions & 0 deletions filebeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -2551,6 +2551,38 @@ type: date
event.created contains the date on which the event was created. In case of log events this is when the log line was read by Filebeat. In comparison @timestamp is the processed timestamp from the log line. If both are identical only @timestamp should be used.


--

*`http.response.status_code`*::
+
--
type: long

example: 404

HTTP response status_code.


--

*`http.response.elapsed_time`*::
+
--
type: long

Elapsed time between request and response in milli seconds.


--

*`http.response.content_length`*::
+
--
type: long

Content length of the HTTP response body.


--

[[exported-fields-logstash]]
Expand Down
Loading