Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cherry-pick #17978 to 7.x: Changing field type to keyword #18092

Merged
merged 2 commits into from
Apr 30, 2020
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
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,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 @@ -26446,7 +26446,7 @@ format: duration
The name of the upstream.


type: text
type: keyword

--

Expand All @@ -26456,7 +26456,7 @@ type: text
The name of the alternative upstream.


type: text
type: keyword

--

Expand Down Expand Up @@ -26500,7 +26500,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