Skip to content

Commit

Permalink
Changing field type to keyword (#17978)
Browse files Browse the repository at this point in the history
* Changing field type to keyword
* Adding changelog
  • Loading branch information
SHolzhauer authored Apr 29, 2020
1 parent d272f7f commit 5cd6b52
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 @@ -115,6 +115,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Remove migrationVersion map 7.7.0 reference from Kibana dashboard file to fix backward compatibility issues. {pull}17425[17425]
- Fix issue 17734 to retry on rate-limit error in the Filebeat httpjson input. {issue}17734[17734] {pull}17735[17735]
- 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]
- Fix Cisco ASA ASA 3020** and 106023 messages {pull}17964[17964]

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 5cd6b52

Please sign in to comment.