Fix test on Linux; setting name missing 'total.'
Original commit: elastic/x-pack-elasticsearch@de0183b3ef
This commit is contained in:
parent
6d40cb63d0
commit
bb5ff7ab36
|
@ -103,11 +103,11 @@ public class NodeStatsResolver extends MonitoringIndexNameResolver.Timestamped<N
|
|||
// Disk Info
|
||||
"node_stats.fs.data.spins",
|
||||
// Node IO Stats
|
||||
"node_stats.fs.io_stats.operations",
|
||||
"node_stats.fs.io_stats.read_operations",
|
||||
"node_stats.fs.io_stats.write_operations",
|
||||
"node_stats.fs.io_stats.read_kilobytes",
|
||||
"node_stats.fs.io_stats.write_kilobytes");
|
||||
"node_stats.fs.io_stats.total.operations",
|
||||
"node_stats.fs.io_stats.total.read_operations",
|
||||
"node_stats.fs.io_stats.total.write_operations",
|
||||
"node_stats.fs.io_stats.total.read_kilobytes",
|
||||
"node_stats.fs.io_stats.total.write_kilobytes");
|
||||
FILTERS = Collections.unmodifiableSet(filters);
|
||||
}
|
||||
|
||||
|
|
|
@ -566,20 +566,24 @@
|
|||
},
|
||||
"io_stats": {
|
||||
"properties": {
|
||||
"operations": {
|
||||
"type": "long"
|
||||
},
|
||||
"read_operations": {
|
||||
"type": "long"
|
||||
},
|
||||
"write_operations": {
|
||||
"type": "long"
|
||||
},
|
||||
"read_kilobytes": {
|
||||
"type": "long"
|
||||
},
|
||||
"write_kilobytes": {
|
||||
"type": "long"
|
||||
"total": {
|
||||
"properties": {
|
||||
"operations": {
|
||||
"type": "long"
|
||||
},
|
||||
"read_operations": {
|
||||
"type": "long"
|
||||
},
|
||||
"write_operations": {
|
||||
"type": "long"
|
||||
},
|
||||
"read_kilobytes": {
|
||||
"type": "long"
|
||||
},
|
||||
"write_kilobytes": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue