-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
110 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<?php declare(strict_types=1); | ||
|
||
/* | ||
* This file is part of the Monolog package. | ||
* | ||
* (c) Jordi Boggiano <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Monolog\Processor; | ||
|
||
use Monolog\LogRecord; | ||
|
||
/** | ||
* Injects sys_getloadavg in all records @see https://www.php.net/manual/en/function.sys-getloadavg.php | ||
* | ||
* @author Johan Vlaar <[email protected]> | ||
*/ | ||
class CPUUsageProcessor implements ProcessorInterface | ||
{ | ||
public const AVG_SYSTEM_LOAD_1_MINUTE = 0; | ||
public const AVG_SYSTEM_LOAD_5_MINUTE = 1; | ||
public const AVG_SYSTEM_LOAD_15_MINUTE = 2; | ||
|
||
public const AVAILABLE_AVG_SYSTEM_LOAD = [ | ||
self::AVG_SYSTEM_LOAD_1_MINUTE, | ||
self::AVG_SYSTEM_LOAD_5_MINUTE, | ||
self::AVG_SYSTEM_LOAD_15_MINUTE, | ||
]; | ||
|
||
/** | ||
* @var int | ||
*/ | ||
protected $avgSystemLoad; | ||
|
||
/** | ||
* @param int $avgSystemLoad | ||
*/ | ||
public function __construct(int $avgSystemLoad = self::AVG_SYSTEM_LOAD_1_MINUTE) | ||
{ | ||
if (!in_array($avgSystemLoad, self::AVAILABLE_AVG_SYSTEM_LOAD, true)) { | ||
throw new \InvalidArgumentException(sprintf('Invalid average system load: `%s`', $avgSystemLoad)); | ||
} | ||
$this->avgSystemLoad = $avgSystemLoad; | ||
} | ||
|
||
/** | ||
* {@inheritDoc} | ||
*/ | ||
public function __invoke(LogRecord $record): LogRecord | ||
{ | ||
if (!function_exists('sys_getloadavg')) { | ||
return $record; | ||
} | ||
$usage = sys_getloadavg(); | ||
if (false === $usage) { | ||
return $record; | ||
} | ||
|
||
$record['extra']['cpu_usage'] = $usage[$this->avgSystemLoad]; | ||
|
||
return $record; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?php declare(strict_types=1); | ||
|
||
/* | ||
* This file is part of the Monolog package. | ||
* | ||
* (c) Jordi Boggiano <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Monolog\Processor; | ||
|
||
use Monolog\Test\TestCase; | ||
|
||
/** | ||
* Injects sys_getloadavg in all records @see https://www.php.net/manual/en/function.sys-getloadavg.php | ||
* | ||
* @author Johan Vlaar <[email protected]> | ||
*/ | ||
class CPUUsageProcessorTest extends TestCase | ||
{ | ||
/** | ||
* @covers Monolog\Processor\CPUUsageProcessor::__invoke | ||
*/ | ||
public function testProcessor() | ||
{ | ||
$processor = new CPUUsageProcessor(); | ||
$record = $processor($this->getRecord()); | ||
$this->assertArrayHasKey('cpu_usage', $record->extra); | ||
$this->assertIsFloat($record->extra['cpu_usage']); | ||
} | ||
|
||
/** | ||
* @covers Monolog\Processor\CPUUsageProcessor::__invoke | ||
*/ | ||
public function testProcessorWithInvalidAvgSystemLoad() | ||
{ | ||
$this->expectException(\InvalidArgumentException::class); | ||
$this->expectExceptionMessage('Invalid average system load: `3`'); | ||
new CPUUsageProcessor(3); | ||
} | ||
} |