monitoring ui: change mappings double -> float
Original commit: elastic/x-pack-elasticsearch@6c7c166aec
This commit is contained in:
parent
92a58c7c07
commit
b469eef1a2
|
@ -97,26 +97,26 @@
|
||||||
"load": {
|
"load": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"1m": {
|
"1m": {
|
||||||
"type": "double"
|
"type": "float"
|
||||||
},
|
},
|
||||||
"5m": {
|
"5m": {
|
||||||
"type": "double"
|
"type": "float"
|
||||||
},
|
},
|
||||||
"15m": {
|
"15m": {
|
||||||
"type": "double"
|
"type": "float"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"memory": {
|
"memory": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"total_in_bytes": {
|
"total_in_bytes": {
|
||||||
"type": "double"
|
"type": "float"
|
||||||
},
|
},
|
||||||
"free_in_bytes": {
|
"free_in_bytes": {
|
||||||
"type": "double"
|
"type": "float"
|
||||||
},
|
},
|
||||||
"used_in_bytes": {
|
"used_in_bytes": {
|
||||||
"type": "double"
|
"type": "float"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -132,20 +132,20 @@
|
||||||
"heap": {
|
"heap": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"total_in_bytes": {
|
"total_in_bytes": {
|
||||||
"type": "double"
|
"type": "float"
|
||||||
},
|
},
|
||||||
"used_in_bytes": {
|
"used_in_bytes": {
|
||||||
"type": "double"
|
"type": "float"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"resident_set_size_in_bytes": {
|
"resident_set_size_in_bytes": {
|
||||||
"type": "double"
|
"type": "float"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"event_loop_delay": {
|
"event_loop_delay": {
|
||||||
"type": "double"
|
"type": "float"
|
||||||
},
|
},
|
||||||
"uptime_in_millis": {
|
"uptime_in_millis": {
|
||||||
"type": "long"
|
"type": "long"
|
||||||
|
@ -189,10 +189,10 @@
|
||||||
"response_times": {
|
"response_times": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"average": {
|
"average": {
|
||||||
"type": "double"
|
"type": "float"
|
||||||
},
|
},
|
||||||
"max": {
|
"max": {
|
||||||
"type": "double"
|
"type": "float"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue