reactphp-x / tail
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/reactphp-x/tail
Requires
- react/stream: ^1.3
- symfony/finder: ^7.0
This package is auto-updated.
Last update: 2025-10-10 06:26:57 UTC
README
install
composer require reactphp-x/tail -vvv
Usage
<?php require __DIR__ . '/vendor/autoload.php'; use ReactphpX\Tail\Tail; $tail = new Tail; $tail->addPath('/var/log', ['*.log']); $tail->addFile('/var/log/access.log'); $tail->start(); $filePath = ''; $tail->on('start', function ($file) use (&$filePath) { if ($filePath != $file) { $filePath = $file; echo PHP_EOL . "==> " . $filePath . " <==" . PHP_EOL; } }); $tail->on('data', function ($data) { echo $data; }); $tail->on('end', function ($file) { });
dependencies
extention: inotify
inotify listen file limit
see
cat /proc/sys/fs/inotify/max_user_instances
edit
vi /etc/sysctl.conf
fs.inotify.max_user_instances = 65532
take effect
sysctl -p
License
MIT