I am am having a document as shown in image
Mappning : "busyTime": { "type": "long" }
The above code snippet is an example.
On my actual production server, I am not getting the correct sum of the busy time, As per my understanding it is not considering float values it only add numbers before decimal only.
Why this is happening any help can be appreciable.
[{
"machinename":"Rama_desktop",
"busyTime": 3.42,
freeTime:20.58
"location": "Beed"
},
{
"machinename":"soni_desktop",
"busyTime": 11.3,
"freeTime": 12.7,
"location": "Beed"
},
{
"machinename":"raja_desktop",
"busyTime": 22.8,
"freeTime": 1.18,
"location": "Beed"
}
]```