博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
zabbix 监控文件夹
阅读量:5739 次
发布时间:2019-06-18

本文共 654 字,大约阅读时间需要 2 分钟。

安装inotify

wget http://github.com/downloads/rvoicilas/inotify-tools/inotify-tools-3.14.tar.gz

tar -zxvf inotify-tools-3.14.tar.gz

./configure

 

make && make install

创建脚本

root@localhost ian]# cat inotify.sh

#!/bin/sh

 /usr/local/bin/inotifywait -mrq -e create,delete,moved_to,close_write --fromfile '/home/ian/excludedir' --format "%T%w%f" --timefmt '%y-%m-%d %H:%M' --format "%T %w%f 事件 信息:%e" >> /tmp/wenjian.txt

创建需要监控的目录

[root@localhost ian]# cat excludedir

/etc/cron.hourly
/etc/cron.daily
/etc/cron.weekly
启动inotify

nohup sh inotify.sh &

zabbix 客户端改成主动式,配置----主机---监控项选择log日志监控 

键值:log[/tmp/wenjian.txt]

 

转载于:https://www.cnblogs.com/iantest/p/9626925.html

你可能感兴趣的文章
“亲切照料”下的领域驱动设计
查看>>
SRE工程师到底是做什么的?
查看>>
解读:Red Hat为什么收购Ansible
查看>>
PHP json_encode() 函数介绍
查看>>
js动态设置元素高度
查看>>
Ossim下的安全合规管理
查看>>
DelphiWebMVC框架下BPL热部署实现
查看>>
C++与MySQL的冲突
查看>>
siki学习之观察者模式笔记
查看>>
单元测试
查看>>
spring.net 继承
查看>>
ES6:模块简单解释
查看>>
JavaScript indexOf() 方法
查看>>
用Bootstrap写一份简历
查看>>
ZJU PAT 1023
查看>>
WMI远程访问问题解决方法
查看>>
从零开始学习IOS,(UILabel控件)详细使用和特殊效果
查看>>
Android开发历程_15(AppWidget的使用)
查看>>
阿花宝宝 Java 笔记 之 初识java
查看>>
7、设计模式-创建型模式-建造者模式
查看>>