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": { "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"
} }
} }
}, },