Skip to content

Commit

Permalink
[Metricbeat] Fix jvm old / young collector (#26616)
Browse files Browse the repository at this point in the history
  • Loading branch information
sayden authored Jul 1, 2021
1 parent f367f0b commit 7275579
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Remove `index_stats.created` field from Elasticsearch/index Metricset {pull}25113[25113]
- Adjust host fields to adopt new names from 1.9.0 ECS. {pull}24312[24312]
- Add replicas.ready field to state_statefulset in Kubernetes module{pull}26088[26088]
- Fix Elasticsearch jvm.gc.collectors.old being exposed as young {issue}19636[19636] {pull}26616[26616]

*Packetbeat*

Expand Down
2 changes: 1 addition & 1 deletion metricbeat/module/elasticsearch/node_stats/data_xpack.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ var (
"collection_count": c.Int("collection_count"),
"collection_time_in_millis": c.Int("collection_time_in_millis"),
}),
"old": c.Dict("young", s.Schema{
"old": c.Dict("old", s.Schema{
"collection_count": c.Int("collection_count"),
"collection_time_in_millis": c.Int("collection_time_in_millis"),
}),
Expand Down

0 comments on commit 7275579

Please sign in to comment.