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

[8.1](backport #30566) metricbeat - fix elasticsearch and kibana integration tests failures in 8.0 #30594

Merged
merged 1 commit into from
Feb 28, 2022
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
83 changes: 83 additions & 0 deletions metricbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -30829,6 +30829,42 @@ type: long

--


*`elasticsearch.index.total.bulk.total_size_in_bytes`*::
+
--
type: long

--

*`elasticsearch.index.total.bulk.avg_size_in_bytes`*::
+
--
type: long

--

*`elasticsearch.index.total.bulk.avg_time_in_millis`*::
+
--
type: long

--

*`elasticsearch.index.total.bulk.total_operations`*::
+
--
type: long

--

*`elasticsearch.index.total.bulk.total_time_in_millis`*::
+
--
type: long

--

[float]
=== index.recovery

Expand Down Expand Up @@ -31496,6 +31532,53 @@ Statistics about each node in a Elasticsearch cluster





*`elasticsearch.node.stats.indices.bulk.avg_time.bytes`*::
+
--
type: long

--

*`elasticsearch.node.stats.indices.bulk.avg_time.ms`*::
+
--
type: long

--


*`elasticsearch.node.stats.indices.bulk.total_time.ms`*::
+
--
type: long

--


*`elasticsearch.node.stats.indices.bulk.total_size.bytes`*::
+
--
type: long

--


*`elasticsearch.node.stats.indices.bulk.avg_size.bytes`*::
+
--
type: long

--

*`elasticsearch.node.stats.indices.bulk.operations.total.count`*::
+
--
type: long

--

*`elasticsearch.node.stats.indices.docs.count`*::
+
--
Expand Down
2 changes: 1 addition & 1 deletion metricbeat/module/elasticsearch/fields.go

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

14 changes: 13 additions & 1 deletion metricbeat/module/elasticsearch/index/_meta/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,4 +193,16 @@
type: long
- name: throttle_time_in_millis
type: long

- name: bulk
type: group
fields:
- name: total_size_in_bytes
type: long
- name: avg_size_in_bytes
type: long
- name: avg_time_in_millis
type: long
- name: total_operations
type: long
- name: total_time_in_millis
type: long
28 changes: 27 additions & 1 deletion metricbeat/module/elasticsearch/node_stats/_meta/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,33 @@
- name: indices
type: group
fields:
- name: bulk
type: group
fields:
- name: avg_time
type: group
fields:
- name: bytes
type: long
- name: ms
type: long
- name: total_time
type: group
fields:
- name: ms
type: long
- name: total_size
type: group
fields:
- name: bytes
type: long
- name: avg_size
type: group
fields:
- name: bytes
type: long
- name: operations.total.count
type: long
- name: docs.count
type: long
description: >
Expand Down Expand Up @@ -312,4 +339,3 @@
type: long
- name: rejected.count
type: long

Loading