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.0](backport #29622) kibana.stats: extract correct index property #29623

Merged
merged 1 commit into from
Dec 28, 2021
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 @@ -101,6 +101,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Use xpack.enabled on SM modules to write into .monitoring indices when using Metricbeat standalone {pull}28365[28365]
- Enhance filter check in kubernetes event metricset. {pull}29470[29470]
- Fix gcp metrics metricset apply aligner to all metric_types {pull}29514[29513]
- Extract correct index property in kibana.stats metricset {pull}29622[29622]

*Packetbeat*

Expand Down
4 changes: 2 additions & 2 deletions metricbeat/module/kibana/stats/_meta/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"host": {
"name": "0.0.0.0"
},
"index": "b04775fa6831",
"index": ".kibana",
"name": "b04775fa6831",
"os": {
"distro": "CentOS",
Expand Down Expand Up @@ -88,4 +88,4 @@
"type": "kibana",
"version": "7.14.0"
}
}
}
2 changes: 1 addition & 1 deletion metricbeat/module/kibana/stats/data.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ var (

"uuid": c.Str("kibana.uuid"),
"name": c.Str("kibana.name"),
"index": c.Str("kibana.name"),
"index": c.Str("kibana.index"),
"host": s.Object{
"name": c.Str("kibana.host"),
},
Expand Down