gemorroj/ginfo

Library for parsing system information, like network/cpu/memory/usb/pci/sound cards/filesystems/raid array/ipmi/etc.

5.6.0 2025-01-28 19:41 UTC

This package is auto-updated.

Last update: 2025-04-20 13:54:06 UTC


README

License Latest Stable Version Continuous Integration

Requirements:

  • PHP >= 8.2
  • pcre extension
  • proc_open
  • Linux/Windows

Linux

  • /proc and /sys mounted and readable by PHP
  • Tested with the 2.6.x/3.x/4.x/5.x/6.x kernels

Windows

  • Windows >= 10
  • You need to have powershell
  • Allow execute ps1 scripts Set-ExecutionPolicy RemoteSigned –Force
  • Some functions are not implemented

Installation:

composer require gemorroj/ginfo

Example:

<?php
use Ginfo\Ginfo;

$ginfo = new Ginfo();
$info = $ginfo->getInfo();

print_r($info->getGeneral()); // kernel, uptime, virtualization, load, etc...
print_r($info->getPhp()); // version, extensions, Opcache, FPM, APCU, etc...
print_r($info->getCpu()); // cores, speed, cache, etc...
print_r($info->getMemory()); // total memory, used, free, cached, swap, etc...
print_r($info->getSoundCard()); // vendor, name
print_r($info->getUsb()); // vendor, name, speed
print_r($info->getUps()); // vendor, time, status, charge, etc...
print_r($info->getPci()); // vendor, name
print_r($info->getNetwork()); // name, speed, state, stats, etc...
print_r($info->getDisk()); // mounts, drives, raids, size, type, stats, etc...
print_r($info->getBattery()); // model, status, voltage, charge, etc...
print_r($info->getSensors()); // name, value, unit, path
print_r($info->getProcesses()); // name, pid, commandLine, memory, state, stats, etc...
print_r($info->getServices()); // name, state, type, etc...
print_r($info->getPrinters()); // name, enabled
print_r($info->getSamba()); // files, services, connections, etc...
print_r($info->getSelinux()); // enabled, mode, policy
print_r($info->getNginx()); // version, status, etc...
print_r($info->getAngie('http://localhost/status/')); // version, status, etc...
print_r($info->getHttpd()); // version, status, etc...
print_r($info->getCaddy()); // version, status, etc...
print_r($info->getMysql(new \PDO('mysql:host=127.0.0.1', 'root', ''))); // variables, performance, status, etc...

Custom parser example:

<?php
use Ginfo\Ginfo;
use Ginfo\Info\InfoInterface;
use Ginfo\InfoParserInterface;

// class for parsed data
final readonly class SwooleInfo implements InfoInterface
{
    public function __construct(private array $stats)
    {
    }
    
    public function getStats(): array
    {
        return $this->stats;
    }
}

// parser
final readonly class SwooleParser implements InfoParserInterface
{
    public function run(): ?InfoInterface
    {
        $stats = \app('Swoole\Http\Server')->stats(); // laravel
        return new SwooleInfo($stats);
    }
}

$swooleParser = new SwooleParser();

$ginfo = new Ginfo();
$info = $ginfo->getInfo($swooleParser);
/** @var SwooleInfo $data */
$data = $info->getCustomParser(SwooleParser::class);
print_r($data->getSomeData());

Information reported

  • CPU type/speed; Architecture
  • Mount point usage
  • Hard/optical/flash drives
  • Hardware devices (PCI) (linux: need pciutils)
  • USB devices (linux: need usbutils)
  • Network devices and stats
  • Uptime
  • Memory usage (physical and swap, linux: need free)
  • Temperatures/voltages/fan speeds (linux: need hddtemp as daemon, mbmon as daemon, sensors (part of lm-sensors), hwmon, acpi themal zone, nvidia-smi, ipmitool)
  • RAID arrays (linux: need mdadm)
  • Motherboard (linux: need dimedecode)
  • Processes
  • Systemd services (linux: need systemctl)
  • logged users (linux: need who)
  • UPS status (linux: need apcaccess)
  • Printer status (linux: need lpstat)
  • Samba status (linux: need smbstatus)
  • Selinux status (linux: need sestatus)
  • PHP (basic info, opcache, apcu)
  • Web-Servers (angie, nginx, httpd, caddy)
  • Databases (mysql/mariadb)

Fork changes:

  • drop ui
  • drop internationalization
  • drop bsd* support (sorry, I will not be able to support)
  • drop dhcp3 support
  • drop dnsmasq support
  • drop php libvirt support
  • drop lxd support
  • no need COM extension on Windows, but need powershell
  • support Windows >= 10
  • adapt the code to modern standards
  • minimal php version 8.2
  • add selinux status info
  • add php info (basic, opcache, apcu)
  • add web-servers info (nginx, angie, httpd, caddy)
  • add databases info (mysql/mariadb)
  • allow add custom parsers