jord-jd/php-server-info
最新稳定版本:v3.0.0
Composer 安装命令:
composer require jord-jd/php-server-info
包简介
Gets metrics on a server via an SSH connection
README 文档
README
Installation
composer require jord-jd/php-server-info
Usage
<?php use JordJD\ServerInfo\Server; use JordJD\SSHConnection\SSHConnection; require_once __DIR__.'/../vendor/autoload.php'; $connection = (new SSHConnection()) ->to('example.com') ->as('username') ->withPrivateKey('/home/user/.ssh/id_rsa'); $array = (new Server($connection)) ->metrics() ->toArray(); var_dump($array);
array(14) { ["uptime"]=> int(7564013) ["hostname"]=> string(11) "example" ["disk-usage-percentage"]=> int(29) ["total-disk-space-bytes"]=> int(18045964) ["memory-usage-percentage"]=> int(37) ["total-memory-bytes"]=> int(1009128) ["swap-usage-percentage"]=> int(26) ["total-swap-bytes"]=> int(1048572) ["mysql-server-running"]=> bool(true) ["apache-server-running"]=> bool(false) ["nginx-server-running"]=> bool(true) ["active-http-connections"]=> int(0) ["load-averages"]=> array(3) { [1]=> float(0.13) [5]=> float(0.19) [15]=> float(0.13) } ["cpu-usage-percentage"]=> float(6.2) }
统计信息
- 总下载量: 2
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 4
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: LGPL-3.0-only
- 更新时间: 2026-02-14