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

Add .* to kubernetes labels and annotations in fields.yml mapping #13226

Merged
merged 6 commits into from
Aug 16, 2019
Merged
Show file tree
Hide file tree
Changes from 5 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 @@ -88,6 +88,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Fix install-service.ps1's ability to set Windows service's delay start configuration. {pull}13173[13173]
- Fix some incorrect types and formats in field.yml files. {pull}13188[13188]
- Load DLLs only from Windows system directory. {pull}13234[13234]
- Fix mapping for kubernetes.labels and kubernetes.annotations in add_kubernetes_metadata. {issue}12638[12638] {pull}13226[13226]

*Auditbeat*

Expand Down
4 changes: 2 additions & 2 deletions auditbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -6451,7 +6451,7 @@ type: keyword

--

*`kubernetes.labels`*::
*`kubernetes.labels.*`*::
+
--
Kubernetes labels map
Expand All @@ -6461,7 +6461,7 @@ type: object

--

*`kubernetes.annotations`*::
*`kubernetes.annotations.*`*::
+
--
Kubernetes annotations map
Expand Down
2 changes: 1 addition & 1 deletion auditbeat/include/fields.go

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions filebeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -7729,7 +7729,7 @@ type: keyword

--

*`kubernetes.labels`*::
*`kubernetes.labels.*`*::
+
--
Kubernetes labels map
Expand All @@ -7739,7 +7739,7 @@ type: object

--

*`kubernetes.annotations`*::
*`kubernetes.annotations.*`*::
+
--
Kubernetes annotations map
Expand Down
4 changes: 2 additions & 2 deletions heartbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -3890,7 +3890,7 @@ type: keyword

--

*`kubernetes.labels`*::
*`kubernetes.labels.*`*::
+
--
Kubernetes labels map
Expand All @@ -3900,7 +3900,7 @@ type: object

--

*`kubernetes.annotations`*::
*`kubernetes.annotations.*`*::
+
--
Kubernetes annotations map
Expand Down
2 changes: 1 addition & 1 deletion heartbeat/include/fields.go

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions journalbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -4294,7 +4294,7 @@ type: keyword

--

*`kubernetes.labels`*::
*`kubernetes.labels.*`*::
+
--
Kubernetes labels map
Expand All @@ -4304,7 +4304,7 @@ type: object

--

*`kubernetes.annotations`*::
*`kubernetes.annotations.*`*::
+
--
Kubernetes annotations map
Expand Down
2 changes: 1 addition & 1 deletion journalbeat/include/fields.go

Large diffs are not rendered by default.

8 changes: 6 additions & 2 deletions libbeat/processors/add_kubernetes_metadata/_meta/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,17 @@
description: >
Kubernetes node name
- name: labels
- name: labels.*
type: object
object_type: keyword
object_type_mapping_type: "*"
description: >
Kubernetes labels map
- name: annotations
- name: annotations.*
type: object
object_type: keyword
object_type_mapping_type: "*"
description: >
Kubernetes annotations map
Expand Down
4 changes: 2 additions & 2 deletions metricbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -13578,7 +13578,7 @@ type: keyword

--

*`kubernetes.labels`*::
*`kubernetes.labels.*`*::
+
--
Kubernetes labels map
Expand All @@ -13588,7 +13588,7 @@ type: object

--

*`kubernetes.annotations`*::
*`kubernetes.annotations.*`*::
+
--
Kubernetes annotations map
Expand Down
2 changes: 1 addition & 1 deletion metricbeat/include/fields/fields.go

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packetbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -5866,7 +5866,7 @@ type: keyword

--

*`kubernetes.labels`*::
*`kubernetes.labels.*`*::
+
--
Kubernetes labels map
Expand All @@ -5876,7 +5876,7 @@ type: object

--

*`kubernetes.annotations`*::
*`kubernetes.annotations.*`*::
+
--
Kubernetes annotations map
Expand Down
2 changes: 1 addition & 1 deletion packetbeat/include/fields.go

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions winlogbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -3786,7 +3786,7 @@ type: keyword

--

*`kubernetes.labels`*::
*`kubernetes.labels.*`*::
+
--
Kubernetes labels map
Expand All @@ -3796,7 +3796,7 @@ type: object

--

*`kubernetes.annotations`*::
*`kubernetes.annotations.*`*::
+
--
Kubernetes annotations map
Expand Down
2 changes: 1 addition & 1 deletion winlogbeat/include/fields.go

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions x-pack/functionbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -3601,7 +3601,7 @@ type: keyword

--

*`kubernetes.labels`*::
*`kubernetes.labels.*`*::
+
--
Kubernetes labels map
Expand All @@ -3611,7 +3611,7 @@ type: object

--

*`kubernetes.annotations`*::
*`kubernetes.annotations.*`*::
+
--
Kubernetes annotations map
Expand Down
2 changes: 1 addition & 1 deletion x-pack/functionbeat/include/fields.go

Large diffs are not rendered by default.