Skip to content

Commit

Permalink
Fix field name from summary to total (#8579)
Browse files Browse the repository at this point in the history
* Fix field name from summary to total

* Fix generated JSON file
  • Loading branch information
ycombinator authored Oct 5, 2018
1 parent 6cae365 commit ce66d6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
},
"indices": {
"fs": {
"summary": {
"total": {
"free_in_bytes": 20373749760,
"available_in_bytes": 20111605760,
"total_in_bytes": 249779191808
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 @@ -155,7 +155,7 @@ var (
"watcher": c.Dict("watcher", threadPoolStatsSchema),
}),
"fs": c.Dict("fs", s.Schema{
"summary": c.Dict("total", s.Schema{
"total": c.Dict("total", s.Schema{
"total_in_bytes": c.Int("total_in_bytes"),
"free_in_bytes": c.Int("free_in_bytes"),
"available_in_bytes": c.Int("available_in_bytes"),
Expand Down

0 comments on commit ce66d6a

Please sign in to comment.