https://github.com/basiliscos/perl-watcher-engine-watcher-filetail
Inotify-based file tail watcher
https://github.com/basiliscos/perl-watcher-engine-watcher-filetail
Last synced: about 2 months ago
JSON representation
Inotify-based file tail watcher
- Host: GitHub
- URL: https://github.com/basiliscos/perl-watcher-engine-watcher-filetail
- Owner: basiliscos
- Created: 2013-08-24T16:01:29.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2014-01-02T19:59:05.000Z (over 12 years ago)
- Last Synced: 2025-12-19T22:56:06.122Z (6 months ago)
- Language: Perl
- Size: 301 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
Awesome Lists containing this project
README
perl-watcher-engine-watcher-filetail
====================================

Inotify-based file tail watcher allows you to track changes (e.g. log file addons)
on the particular file on filesystem.
Add to ~/.perl-watcher/engine.conf filetail watcher like:
```
{
class => 'App::PerlWatcher::Watcher::FileTail',
config => {
file => '/var/log/messages',
lines_number => 10,
filter => sub { $_ !~ /\scron/ },
},
},
```