matusstafura / magento2-systeminfo
Magento 2 module to show developer system info (PHP/OPcache, MySQL/MariaDB, Redis/Valkey, Elasticsearch/OpenSearch, Varnish, cron, indexers, cache status, disk space) in admin and CLI.
Package info
github.com/matusstafura/magento2-systeminfo
Type:magento2-module
pkg:composer/matusstafura/magento2-systeminfo
v0.2.0
2026-07-24 06:08 UTC
Requires
- php: >=8.1
- magento/framework: >=103.0
README
This Magento 2 module provides detailed system information useful for developers, directly in the Admin panel and via CLI.
๐ Features
- Magento version, edition & mode
- PHP version, extensions & OPcache status (enabled/disabled, hit rate, memory usage)
- Database version โ auto-detects MySQL vs MariaDB
- Cache backend version โ auto-detects Redis vs Valkey
- Search engine โ auto-detects Elasticsearch vs OpenSearch (reads the actual server's
version.distribution, not just what's configured) plus the configured engine - Varnish version (if installed and
shell_execisn't disabled) - Cron health โ time since last successful
cron_schedulerun, flagged STALE after 15 minutes - Indexer status โ lists any indexer not in a "valid" state
- Magento cache type status โ which cache types are enabled/disabled
- Disk free space on the app root
- Operating system info
๐ฆ Installation
๐ฆ Option 1: Installation via Composer (Packagist)
composer require --dev matusstafura/magento2-systeminfo
๐ง Option 2: Manual installation (recommended for local dev)
mkdir -p app/code/MatusStafura/SystemInfo git clone https://github.com/matusstafura/matusstafura-magento2-systeminfo.git app/code/MatusStafura/SystemInfo
Then run:
php bin/magento module:enable MatusStafura_SystemInfo php bin/magento setup:upgrade php bin/magento cache:flush
๐งช Usage
Admin Panel
Go to:
Stores โ Configuration โ Advanced โ Dev Tools โ System Info
Youโll see a table with system info formatted for easy reading.
CLI
Run:
php bin/magento devtools:info
