Hey!
I bumped into this thread and noticed this was not solved.
If you noticed the fields are presented as string (a not,#) and the tonumber fails due to multiple values in the string.
Here's the how I found out the solution:
/opt/splunk/etc/system/local/props.conf
[nutanix_arch]
KV_MODE = none
AUTO_KV_JSON = false
INDEXED_EXTRACTIONS = JSON
https://answers.splunk.com/answers/610585/json-format-duplicate-value-in-field.html
Now the field is an interger and you can eval it with the following command:
|eval usage='stats.hypervisor_cpu_usage_ppm' / 10000
Hope this helps! 🙂
... View more