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

[Metricbeat/kibana/status] Add support for v8format #40275

Merged
merged 7 commits into from
Jul 17, 2024
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 @@ -55,6 +55,7 @@ https://github.com/elastic/beats/compare/v8.8.1\...main[Check the HEAD diff]
- Setting period for counter cache for Prometheus remote_write at least to 60sec {pull}38553[38553]
- Add support of Graphite series 1.1.0+ tagging extension for statsd module. {pull}39619[39619]
- Remove fallback to the node limit for the `kubernetes.pod.cpu.usage.limit.pct` and `kubernetes.pod.memory.usage.limit.pct` metrics calculation
- Add support for Kibana status metricset in v8 format {pull}40275[40275]

*Osquerybeat*

Expand Down
62 changes: 61 additions & 1 deletion metricbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -44450,13 +44450,73 @@ alias to: service.version
*`kibana.status.status.overall.state`*::
+
--
Kibana overall state.
Kibana overall state (v7 format).


type: keyword

--

*`kibana.status.status.overall.level`*::
+
--
Kibana overall level (v8 format).


type: keyword

--

*`kibana.status.status.overall.summary`*::
+
--
Kibana overall state in a human-readable format.


type: text

--

*`kibana.status.status.core.elasticsearch.level`*::
+
--
Kibana Elasticsearch client's status


type: keyword

--

*`kibana.status.status.core.elasticsearch.summary`*::
+
--
Kibana Elasticsearch client's status in a human-readable format.


type: text

--

*`kibana.status.status.core.savedObjects.level`*::
+
--
Kibana Saved Objects client's status


type: keyword

--

*`kibana.status.status.core.savedObjects.summary`*::
+
--
Kibana Saved Objects client's status in a human-readable format.


type: text

--

[float]
=== metrics

Expand Down
2 changes: 1 addition & 1 deletion metricbeat/module/kibana/fields.go

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

26 changes: 25 additions & 1 deletion metricbeat/module/kibana/status/_meta/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,31 @@
- name: status.overall.state
type: keyword
description: >
Kibana overall state.
Kibana overall state (v7 format).
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The fields are not updated in the docs: fields.asciidoc
- I tried running make update and it adds them there.

- name: status.overall.level
type: keyword
description: >
Kibana overall level (v8 format).
- name: status.overall.summary
type: text
description: >
Kibana overall state in a human-readable format.
- name: status.core.elasticsearch.level
type: keyword
description: >
Kibana Elasticsearch client's status
- name: status.core.elasticsearch.summary
type: text
description: >
Kibana Elasticsearch client's status in a human-readable format.
- name: status.core.savedObjects.level
type: keyword
description: >
Kibana Saved Objects client's status
- name: status.core.savedObjects.summary
type: text
description: >
Kibana Saved Objects client's status in a human-readable format.
- name: metrics
type: group
description: >
Expand Down
Loading
Loading