@BPry wrote: Management CPU Utilization: There really isn't an easy way to parse the result due to the data structure. /api/?type=op&cmd=<show><system><resources></resources></system></show> With some regex this shouldn't be a problem (here an example that fetches the different CPU values that this output provides in regex capture groups: ^top\s-\s\d\d:\d\d:\d\d\sup\s\d{1,3}\sdays,\s\d\d:\d\d,\s\d{1,2}\susers,\sload\saverage:\s(\d{1,3}\.\d{1,3}),\s(\d{1,3}\.\d{1,3}),\s(\d{1,3}\.\d{1,3})\sTasks:\s\d{1,3}\stotal,\s\d{1,3}\srunning,\s\d{1,3}\ssleeping,\s\d{1,3}\sstopped,\s\d{1,3}\szombie\sCpu\(s\):\s(\d{1,3}\.\d{1,3})%us,\s(\d{1,3}\.\d{1,3})%sy,\s(\d{1,3}\.\d{1,3})%ni,\s(\d{1,3}\.\d{1,3})
... View more