monitoring ui: change mappings double -> float

Original commit: elastic/x-pack-elasticsearch@6c7c166aec
This commit is contained in:
Jonathan Budzenski 2016-05-16 16:54:33 -05:00
parent 92a58c7c07
commit b469eef1a2
1 changed files with 12 additions and 12 deletions

View File

@ -97,26 +97,26 @@
"load": {
"properties": {
"1m": {
"type": "double"
"type": "float"
},
"5m": {
"type": "double"
"type": "float"
},
"15m": {
"type": "double"
"type": "float"
}
}
},
"memory": {
"properties": {
"total_in_bytes": {
"type": "double"
"type": "float"
},
"free_in_bytes": {
"type": "double"
"type": "float"
},
"used_in_bytes": {
"type": "double"
"type": "float"
}
}
},
@ -132,20 +132,20 @@
"heap": {
"properties": {
"total_in_bytes": {
"type": "double"
"type": "float"
},
"used_in_bytes": {
"type": "double"
"type": "float"
}
}
},
"resident_set_size_in_bytes": {
"type": "double"
"type": "float"
}
}
},
"event_loop_delay": {
"type": "double"
"type": "float"
},
"uptime_in_millis": {
"type": "long"
@ -189,10 +189,10 @@
"response_times": {
"properties": {
"average": {
"type": "double"
"type": "float"
},
"max": {
"type": "double"
"type": "float"
}
}
},