-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature: new command to display containers resource stats
- Loading branch information
Showing
3 changed files
with
61 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,59 @@ | ||
<?php | ||
/* | ||
* This file is part of the MooCommand package. | ||
* | ||
* (c) Mohamed Alsharaf <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace MooCommand\Command\Workspace; | ||
|
||
use MooCommand\Command\Workspace as WorkspaceAbstract; | ||
use Symfony\Component\Console\Input\InputArgument; | ||
|
||
/** | ||
* Stat. | ||
* | ||
* @author Mohamed Alsharaf <[email protected]> | ||
*/ | ||
class Stat extends WorkspaceAbstract | ||
{ | ||
/** | ||
* @var string | ||
*/ | ||
protected $description = 'Display a live stream of container(s) resource usage statistics.'; | ||
/** | ||
* @var string | ||
*/ | ||
protected $childSignature = 'stat'; | ||
/** | ||
* @var array | ||
*/ | ||
protected $arguments = [ | ||
'filter' => [ | ||
'mode' => InputArgument::OPTIONAL, | ||
'description' => 'Filter the output by keyword', | ||
], | ||
]; | ||
|
||
/** | ||
* Main method to execute the command script. | ||
* | ||
* @return void | ||
* | ||
* @throws \Exception | ||
*/ | ||
protected function fire() | ||
{ | ||
$command = 'docker stats $(docker ps%s|grep -v "NAMES"|awk \'{ print $NF }\'|tr "\n" " ")'; | ||
|
||
$grepBy = $this->argument('filter'); | ||
if (!empty($grepBy)) { | ||
$grepBy = '|grep "' . $grepBy . '" '; | ||
} | ||
|
||
$this->getShellHelper()->execRealTime($command, $grepBy)->getOutput(); | ||
} | ||
} |
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