In the API results of perf-object-get-instances for object "aggregate", for one of the count-name we have received very big value.
Something like,
<name>total_transfers</name>
<value>18446735317342082409</value>
For parsing we do Long.parseLong() method, for this value exceeds the max limit for long. So need to use BigInteger.
I would like to know if it will be a valid value from ONTAP API? How can we verify this? Can someone gives insights on this?
Thanks,