2014年2月8日星期六

inotifywait exclude 排除指定后缀文件

inotifywait  exclude 排除指定后缀文件

今天打算使用 inotify-tool 来对线上程序文件进行监控, 因为有些目录是缓存目录, 所以要进行排除, 同时还要排除一些指定的后缀的文件, 比如 .swp 等

需要递归监控的目录为: /tmp/inotify-test-dir
需要排除的目录为:      /tmp/inotify-test-dir/cache
需要排除特定后缀文件:  .log  .swp 文件



根据网上看的一些资料, 我先做了如下尝试:

/usr/local/bin/inotifywait -mr -e close_write,modify,create,move,delete --exclude ^.*\.(log|swp)$ --exclude "^/tmp/inotify-test-dir/cache" --timefmt %Y/%m/%d %H:%M --format %T %w%f %e /tmp/inotify-test-dir

发现无论如何改, 第一个排除指定后缀 .log 和 .swp 都不生效, 我以为是我写的正则有问题, 又修改了很多次, 还是不行. 没办法再次google, 最终还是让我发现了问题的所在, 原来 inotifywait 不支持两次 --exclude , 否则,后面的规则将覆盖前面的规则.

明白问题的所在后, 再次修改:

/usr/bin/inotifywait -mr -e modify,create,move,delete --exclude '^/tmp/inotify-test-dir/(cache|(.*/*\.log|.*/*\.swp)$)' --timefmt '%Y/%m/%d %H:%M' --format '%T %w%f %e' /tmp/inotify-test-dir

这次ok 通过

-----------
inotifywait 有 --fromfile 选项, 可以直接从文件中读入要监控的目录,和排除的目录. 在这里我使用  --fromfile '/tmp/inotify-file-list'  选项

/tmp/inotify-file-list 文件的内容如下:

/tmp/inotify-test-dir
@/tmp/inotify-test-dir/cache

以@开头的路径代表的是要排除的目录和文件,其他的为要监控的文件

假如:我要递归监控 /tmp/inotify-test-dir 目录下的所有的所有的 .php 文件, 但是排除 /tmp/inotify-test-dir/cache 目录下的所有文件

我就可以这样写

/usr/bin/inotifywait -mr -e modify,create,move,delete --exclude ^.+\.[^php]$ --fromfile '/tmp/inotify-file-list' --timefmt '%Y/%m/%d %H:%M' --format  '%T %w%f %e'





没有评论:

发表评论