├── ChangeLog ├── LICENSE ├── Makefile ├── README.md ├── config ├── dir.list ├── proc.list ├── server.list └── watchsys.conf ├── install.sh ├── man └── watchsys.1 ├── src ├── functions.sh ├── watch_cpu.sh ├── watch_directories.sh ├── watch_disk.sh ├── watch_mem.sh ├── watch_proc.sh ├── watch_servers.sh └── watchsys.sh ├── system ├── watchsys.cron ├── watchsys.initd ├── watchsys.logrotate └── watchsys.service └── uninstall.sh /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgmdev/watchsys/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgmdev/watchsys/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgmdev/watchsys/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgmdev/watchsys/HEAD/README.md -------------------------------------------------------------------------------- /config/dir.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgmdev/watchsys/HEAD/config/dir.list -------------------------------------------------------------------------------- /config/proc.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgmdev/watchsys/HEAD/config/proc.list -------------------------------------------------------------------------------- /config/server.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgmdev/watchsys/HEAD/config/server.list -------------------------------------------------------------------------------- /config/watchsys.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgmdev/watchsys/HEAD/config/watchsys.conf -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgmdev/watchsys/HEAD/install.sh -------------------------------------------------------------------------------- /man/watchsys.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgmdev/watchsys/HEAD/man/watchsys.1 -------------------------------------------------------------------------------- /src/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgmdev/watchsys/HEAD/src/functions.sh -------------------------------------------------------------------------------- /src/watch_cpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgmdev/watchsys/HEAD/src/watch_cpu.sh -------------------------------------------------------------------------------- /src/watch_directories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgmdev/watchsys/HEAD/src/watch_directories.sh -------------------------------------------------------------------------------- /src/watch_disk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgmdev/watchsys/HEAD/src/watch_disk.sh -------------------------------------------------------------------------------- /src/watch_mem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgmdev/watchsys/HEAD/src/watch_mem.sh -------------------------------------------------------------------------------- /src/watch_proc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgmdev/watchsys/HEAD/src/watch_proc.sh -------------------------------------------------------------------------------- /src/watch_servers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgmdev/watchsys/HEAD/src/watch_servers.sh -------------------------------------------------------------------------------- /src/watchsys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgmdev/watchsys/HEAD/src/watchsys.sh -------------------------------------------------------------------------------- /system/watchsys.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgmdev/watchsys/HEAD/system/watchsys.cron -------------------------------------------------------------------------------- /system/watchsys.initd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgmdev/watchsys/HEAD/system/watchsys.initd -------------------------------------------------------------------------------- /system/watchsys.logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgmdev/watchsys/HEAD/system/watchsys.logrotate -------------------------------------------------------------------------------- /system/watchsys.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgmdev/watchsys/HEAD/system/watchsys.service -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgmdev/watchsys/HEAD/uninstall.sh --------------------------------------------------------------------------------