Closed tuteng closed 8 years ago
If the process number is large, the Uptime will display error
example: file: cesi/cesi/static/custom.js description: "pid 199917, uptime 0:47:11" var $uptime = result['process_info'][$counter]['description'].substring(17,24); $uptime == "e 0:47:" Solution: var $uptime = result['process_info'][$counter]['description'].split(", uptime")[1];
thank you
Solved with https://github.com/gamegos/cesi/pull/10
If the process number is large, the Uptime will display error
thank you