Skip to content

Commit

Permalink
Cherry-pick #17978 to 7.x: Changing field type to keyword (#18092)
Browse files Browse the repository at this point in the history
* Changing field type to keyword (#17978)

* Changing field type to keyword
* Adding changelog

(cherry picked from commit 5cd6b52)

* update changelog

Co-authored-by: Stijn Holzhauer <[email protected]>
  • Loading branch information
kaiyan-sheng and SHolzhauer authored Apr 30, 2020
1 parent 360c14c commit 01e6d3c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Fix issue 17734 to retry on rate-limit error in the Filebeat httpjson input. {issue}17734[17734] {pull}17735[17735]
- Remove migrationVersion map 7.7.0 reference from Kibana dashboard file to fix backward compatibility issues. {pull}17425[17425]
- Fixed `cloudfoundry.access` to have the correct `cloudfoundry.app.id` contents. {pull}17847[17847]
- Fixing `ingress_controller.` fields to be of type keyword instead of text. {issue}17834[17834]
- Fixed typo in log message. {pull}17897[17897]

*Heartbeat*
Expand Down
6 changes: 3 additions & 3 deletions filebeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -26458,7 +26458,7 @@ format: duration
The name of the upstream.
type: text
type: keyword
--
Expand All @@ -26468,7 +26468,7 @@ type: text
The name of the alternative upstream.
type: text
type: keyword
--
Expand Down Expand Up @@ -26512,7 +26512,7 @@ type: long
The randomly generated ID of the request
type: text
type: keyword
--
Expand Down
2 changes: 1 addition & 1 deletion filebeat/module/nginx/fields.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions filebeat/module/nginx/ingress_controller/_meta/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
description: >
Time elapsed since the first bytes were read from the client
- name: upstream.name
type: text
type: keyword
description: >
The name of the upstream.
- name: upstream.alternative_name
type: text
type: keyword
description: >
The name of the alternative upstream.
- name: upstream.response.length
Expand All @@ -44,7 +44,7 @@
description: >
The status code of the response obtained from the upstream server
- name: http.request.id
type: text
type: keyword
description: >
The randomly generated ID of the request
- name: upstream.ip
Expand Down

0 comments on commit 01e6d3c

Please sign in to comment.