-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cant get "cpuUsage" with "$linfo->getInfo();" #48
Comments
You need to first call determineCPUPercentage() before running getInfo(). $linfo = new \Linfo\Linfo;
$linfo->getParser()->determineCPUPercentage();
$linfo->getInfo(); |
require_once dirname(FILE).'/init.php'; $linfo = new Linfo; in $values the CPU Usage Field is empty. |
Just looked into this. The following works for me: <?php
require_once __DIR__ . '/standalone_autoload.php';
$linfo = new \Linfo\Linfo;
$parser = $linfo->getParser();
$parser->determineCPUPercentage();
var_dump($parser->getCPU()); And then:
Admittedly the API could be cleaner but it works. |
Cant get the Value of "cpuUsage", its empty.
The text was updated successfully, but these errors were encountered: